...
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
Users can expect both tasks and their internal components to execute in the arranged sequence, following this structured flow:
...