Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/en/docs/genai/v2/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ The following components are available in Agents Kit 2.
| App | Description | Latest Released Version |
| --- | --- | --- |
| [Agent Builder Starter App](https://marketplace.mendix.com/link/component/240369) (formerly known as Support Assistant Starter App) | Build agentic apps with this starter app that includes Agent Commons and all its required dependencies. Includes a working conversational support agent that you can customize with prompts, tool calling, knowledge base integration, and human-in-the-loop capabilities. | 2.0.0 |
| [Blank GenAI App](https://marketplace.mendix.com/link/component/227934) | Start building with Mendix GenAI capabilities using this blank starter app that comes preloaded with connectors for Mendix Cloud GenAI, OpenAI, Amazon Bedrock, and Mistral, plus Agent Commons and all its required dependencies. | 5.0.0 |
| [RFP Assistant Starter App / Questionnaire Assistant Starter App](https://marketplace.mendix.com/link/component/235917) | Demonstrates a time-saving GenAI pattern for answering similar-but-different questions. Upload Request for Proposal (RFP) documents, generate responses from a historical knowledge base of question-answer pairs, edit with AI assistance, and keep the model's responses current with continuous knowledge base updates. | 4.0.0 |
| [Blank GenAI App](https://marketplace.mendix.com/link/component/227934) | Start building with Mendix GenAI capabilities using this blank starter app that comes preloaded with connectors for Mendix Cloud GenAI, OpenAI, Amazon Bedrock, Google Gemini, and Mistral, plus Agent Editor and all its required dependencies. | 5.0.0 |
| [RFP Assistant Starter App / Questionnaire Assistant Starter App](https://marketplace.mendix.com/link/component/235917) | Demonstrates a time-saving GenAI pattern for answering similar-but-different questions. Upload Request for Proposal (RFP) documents, generate responses from a historical knowledge base of question-answer pairs, edit with AI assistance, and keep the model's responses current with continuous knowledge base updates. Requires [Mendix Cloud GenAI](/agents/mx-cloud-genai/). | 4.0.0 |

### Showcase Apps {#showcase-apps}

Expand Down
17 changes: 10 additions & 7 deletions content/en/docs/genai/v2/release-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,22 +42,25 @@ Agents Kit 2 requires Studio Pro 11.12 or higher.

#### Agent Editor and Studio Pro Agents

Studio Pro agents, built using [Agent Editor](/agents/agents-kit-2/reference-guide/agent-editor/), are now the preferred way to build agents with Mendix Cloud GenAI resources. Agent Editor lets you define and develop agents locally in Studio Pro, then deploy them directly to cloud environments using the app model.
Studio Pro agents, built using [Agent Editor](https://marketplace.mendix.com/link/component/257918), are now the preferred way to build agents with Mendix Cloud GenAI resources. Agent Editor lets you define and develop agents locally in Studio Pro, then deploy them directly to cloud environments using the app model.

##### Migrating from Runtime Agents to Studio Pro Agents {#runtime-to-studio-pro}

If your app uses runtime agents (built with the [Agent Commons](/agents/agents-kit-2/reference-guide/agent-commons/) module) and Mendix Cloud GenAI resources, you can migrate them to Studio Pro agents by following these steps:

1. Ensure your app uses Studio Pro 11.12 or higher.
2. Open Agent Editor in Studio Pro.
2. Open [Agent Editor](/agents/agents-kit-2/reference-guide/agent-editor/) in Studio Pro.
3. Create a new Studio Pro agent for each runtime agent you want to migrate.
4. Copy the agent definition from your runtime agent into the new Studio Pro agent.
5. In your microflows and other logic, replace any runtime toolbox actions with the corresponding Agent Editor toolbox actions.
5. Add any tools your runtime agent used to the new Studio Pro agent: In the **Tools** section of the Agent document, select any microflows used as tools. If your agent used knowledge bases or consumed MCP services, create a dedicated document for each and then select it as a tool.
6. In your microflows and other logic, replace any runtime toolbox actions with the corresponding Agent Editor toolbox actions.

#### RFP Assistant Starter App Updates
#### Atlas UI 4 Compatibility

The [RFP Assistant Starter App](https://marketplace.mendix.com/link/component/235917) now supports Studio Pro agents if you are using [Mendix Cloud GenAI](/agents/mx-cloud-genai/).
Agents Kit 2 modules are compatible with [Atlas UI 4](/refguide/frontend/atlas4-migration/), Mendix's updated UI framework.

#### Atlas UI 4 Compatibility
## General Notes

Agents Kit 2 modules are compatible with [Atlas UI 4](/refguide/frontend/atlas4-migration/), Mendix's updated UI framework.
* Feature parity between Agent Builder in Runtime and Agent Editor in Studio Pro is still in progress, particularly for external provider support and human-in-the-loop capabilities.
* The [RFP Assistant Starter App](https://marketplace.mendix.com/link/component/235917) now supports Studio Pro agents and requires [Mendix Cloud GenAI](/agents/mx-cloud-genai/).
* The latest version of the [AI Bot Starter App](https://marketplace.mendix.com/link/component/227926) remains available in Studio Pro 10.24 and has not been upgraded for Agents Kit 2, as its use case does not rely on agents.
Loading