...
Each task consists of components that also run in sequence, ensuring a structured execution process. The typical internal flow follows these steps:
PromptPrompts:
The system first sends the defined prompt to the LLM (Large Language Model). Multiple prompts placed within one task will also run sequentially.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.
...