start_streaming_chat
Initiate a real-time chat session with an agent, enabling continuous message exchange. Specify the agent name and initial message to begin streaming interactions.
Instructions
Start a streaming chat session
Input Schema
Name | Required | Description | Default |
---|---|---|---|
agent_name | Yes | Name of the agent | |
message | Yes | Initial message | |
streaming | No | Enable streaming |
Input Schema (JSON Schema)
{
"properties": {
"agent_name": {
"description": "Name of the agent",
"type": "string"
},
"message": {
"description": "Initial message",
"type": "string"
},
"streaming": {
"description": "Enable streaming",
"type": "boolean"
}
},
"required": [
"agent_name",
"message"
],
"type": "object"
}