Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Each task consists of components that also run in sequence, ensuring a structured execution process. The typical internal flow follows these steps:

  1. PromptPrompts:
    The system first sends the defined prompt to the LLM (Large Language Model). Multiple prompts placed within one task will also run sequentially.

  2. 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.

  3. 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.

...