Skip to main content
Conversation node is the most commonly used node type in conversation flow. It’s used to have a conversation with the user without tool calling during the conversation.
If you want the agent to talk to the user and call tools during the same node, use a Subagent Node instead.
The agent can have a multi-turn conversation inside a single node, so you don’t necessarily need to create a new conversation node for every sentence the agent needs to say. It’s recommended to split a node when there’s a logic split, or the instruction gets too long.

Write Instruction

Inside the node, pick how you want to write the instruction for the agent to follow:
  • Prompt: Write a prompt for the agent to dynamically generate what to say
  • Static Sentence: Agent will say a fixed sentence first, and if still inside this node afterward, it will generate content dynamically based on the static sentence set

When Can Transition Happen

  • When user is done speaking
  • When Skip Response is enabled and agent finishes speaking

Node Settings