Skip to main content
Use an agent node to call an agent in your agentic workflow. To configure an agent node, call the agent() method in your agentic workflow. In this method, define the following parameters:
string
required
The name of the agent.
string
required
The agent used in the agentic workflow.
string
The display name of the agent.
string
The title of the agent.
string
The message of the agent. If not configured, the default message is “Follow the agent instructions”.
string
The description of the agent.
type[BaseModel]
Input schema for the tool.
type[BaseModel]
Output schema for the tool.
string
The guidelines of the agent.
DataMap
Define input mappings using a structured collection of Assignment objects.
The following example shows how to configure an agent node in an agentic workflow:
Python