Conversation node is the most commonly used node type in conversation flow. It’s used to have a conversation with the user. When inside this node, the agent will not call any functions or perform any actions.please note that 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 node when there’s logic split, or the instruction got too long.
Inside the node, you get to pick how you want to write the specific instruction for the agent to follow:
Prompt: Write a prompt for the agent to dynamically generate what to say.
Static Ssentence: Agent will say a fixed sentence first, and if later still inside this node, it will generate content dynamically based on the static sentence set.
Skip Response: when enabled, the transition will only have one edge that you can connect, and when agent is done talking, it will transition to the next node via that specific edge. This is useful when you want the agent to say things like disclaimers, where you don’t need a response to move on to another node.