AgentInteractionMode
Interaction mode defining the conversational pattern of the agent.
Determines whether the agent handles single request-response exchanges or maintains ongoing multi-turn conversations with context.
enum AgentInteractionMode {
SINGLE_TURN
MULTI_TURN
}
Values
AgentInteractionMode.SINGLE_TURN
Agent handles single request-response exchanges.
Each interaction is independent with no conversation history, suitable for stateless operations like data lookups, one-time actions, and simple queries.
AgentInteractionMode.MULTI_TURN
Agent maintains ongoing conversations with context.
Supports multi-message dialogues with conversation history, enabling complex workflows, follow-up questions, and contextual interactions.
Member Of
Agent object ● AgentCreateInput input ● AgentSearchInput input ● AgentUpdateInput input