Integrate Agentic AI

0
How does Agentic AI function within Mendix, and how can we develop an AI agent in Mendix that autonomously makes decisions, adapts dynamically based on real-time data, and continuously improves by learning from historical data? What are the technical approaches and architectural components required to implement this within Mendix?
asked
1 answers
0

Hi Harish,

 

Thank you for reaching out! There are a number of GenAI connectors already available on the Mendix marketplace that cover the implementation of GenAI patterns that could be relevant.

For anyone in the process of defining a use case, I can recommend to take a look some of our starter apps for inspiration: Support Assistant (https://marketplace.mendix.com/link/component/231035) and the RFP Assistant (https://marketplace.mendix.com/link/component/235917).

Both contain implementations of agentic capabilities, both with and without chat interfaces.

 

The used patterns that make the behavior agentic are: function calling to perform in-app actions, interact with data, retrieve semantically relevant background information from a knowledge base, retrieve historical information.

 

The relevant connectors present in these apps are:

- GenAI For Mendix, GenAI Commons, ConversationalUI (3 modules in 1 package): https://marketplace.mendix.com/link/component/227931

- OpenAI Connector: https://marketplace.mendix.com/link/component/220472

- Amazon Bedrock connector: https://marketplace.mendix.com/link/component/215042

 

For a more technical set of examples of GenAI interactions, including function calling that can be used for performing actions, next similarity search and RAG can be found in the GenAI Showcase app: https://marketplace.mendix.com/link/component/220475

 

The following pages on mendix docs will be useful as well to read more about the patterns and capabilities:

https://docs.mendix.com/appstore/modules/genai/using-genai/howto-functioncalling/

https://docs.mendix.com/appstore/modules/genai/prompt-engineering/

https://docs.mendix.com/appstore/modules/genai/rag/

 

Hope this helps!

 

Regards,

Tom

answered