Telnyx AI Assistants now support multi-participant calls. An assistant can invite another participant into an active call, identify who is speaking at any point, and stay silent when the participants are talking to each other rather than addressing the assistant.
curl -X POST https://api.telnyx.com/v2/ai/assistants \
-H "Authorization: Bearer $TELNYX_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "scheduling-assistant",
"model": "moonshotai/Kimi-K2.5",
"instructions": "You are a scheduling assistant. When participants are talking to each other, use Skip Turn and stay silent. Only respond when someone addresses you directly.",
"tools": [
{
"type": "invite",
"invite": {
"from": "+19876543210",
"targets": [
{
"to": "+1234567890",
"name": "Specialist"
}
]
}
},
{
"type": "skip_turn",
"skip_turn": {
"description": "Use this tool when participants are talking to each other and not addressing the assistant."
}
}
]
}'Learn more in the Multi-Participant Calls guide.