start_conversation
Initiate a background autonomous multi-agent conversation to debate a topic or solve a task, returning a conversation ID for progress tracking.
Instructions
Start an autonomous multi-agent conversation running in the background.
Args: topic: The task or question the agents discuss. agents: Optional participants, each {"name", "model", "system"}. "model" is ":" — e.g. "anthropic:claude-opus-4-8", "deepinfra:zai-org/GLM-5.2" — or an alias: "opus", "heavy", "cheap". Defaults to an opus + GLM-5.2 pair (proponent vs critic). max_rounds: Full round-robin rounds before the conversation ends.
Returns the conversation_id to use with get_transcript / inject_message / stop_conversation. Poll get_transcript to follow progress.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| topic | Yes | ||
| agents | No | ||
| max_rounds | No |