Await Response pauses the workflow and waits for users to supplement information. Suitable for multi-turn dialogue, form collection, confirmation operations or file upload requirements.
Configuration:
Define prompt messages to guide users. Input supports the same variable types as Begin: single-line text, paragraph text, dropdown options, file upload, number and boolean.
Switch executes rule-based judgment and routes workflows to different downstream paths according to results.
Configuration:
At least one Case must be defined. Each Case can contain multiple conditions combined by AND / OR.
Supported operators: Equals, Not equal, Greater than, Greater equal, Less than, Less equal, Contains, Not contains, Starts with, Ends with, Is empty, Not empty.
:::tip NOTE
Switch is rule-based judgment for structured data and clear conditions. Categorize uses LLM-based classification for natural language intent recognition.
Iteration splits text into fragments and executes the same set of internal components for each fragment. Suitable for long-text translation, paragraph-wise summarization, batch generation and item-by-item list processing.
Internal Workflow:
Iteration contains built-in `Loop Item`. Components dragged inside Iteration can only be accessed within the loop. Reference `Loop Item` to obtain current fragment data.
Configuration Parameters:
- **Loop variables**: Variables used during iteration; support read and update inside the loop
- **Loop termination condition**: Exit condition to stop iteration