create_streaming_workflow
Design and enable real-time streaming workflows by configuring agents and specifying workflow details using the AutoGen MCP Server's multi-agent conversation framework.
Instructions
Create a workflow with real-time streaming
Input Schema
Name | Required | Description | Default |
---|---|---|---|
agents | Yes | List of agent configurations | |
streaming | No | Enable streaming | |
workflow_name | Yes | Name for the workflow | |
workflow_type | Yes | Type of workflow |
Input Schema (JSON Schema)
{
"properties": {
"agents": {
"description": "List of agent configurations",
"type": "array"
},
"streaming": {
"description": "Enable streaming",
"type": "boolean"
},
"workflow_name": {
"description": "Name for the workflow",
"type": "string"
},
"workflow_type": {
"description": "Type of workflow",
"type": "string"
}
},
"required": [
"workflow_name",
"workflow_type",
"agents"
],
"type": "object"
}