...
When you create an AI Agent, it consists of two parts:
1. Define Agent
This is the brain of your AI Agent. You define:
- LLM Service: Choose the AI model your agent will use. Currently, Joget supports OpenAI’s GPT models. More AI services will be added in future versions.
- Default Prompts: Predefined instructions or questions you want the AI to follow or ask.
...
The Task section defines what the agent will actually do. By default, this section is named First Task. You can create multiple tasks in a sequence, allowing the agent to process input step by step, such as retrieving data, formatting a response, or calling an API. Each task is made up of three key components,which are Prompt, Tool, and Enhancer.
...
Prompt:
The system first sends the defined prompt to the LLM (Large Language Model).Tools (Optional):
If the response requires additional functionality, such as calling an API, retrieving data, or executing database queries,the appropriate tool is invoked after the prompt.Enhancers (Optional):
Once the output is generated (after Prompt + Tool), Enhancers are triggered last. These allow you to store the output in a form field, process a variable, or modify the result before final use.
Execution Order
...