Silent transfers between assistants inside a Squad
# support
f
II created a squad composed from 4 assistants. When an assistant passes the conversation to another, every time tho scenario repeats l, the assistant says “transferr call”. How came i set up silent transfers between assistants ?
a
Hey, Could you please schedule a brief call at your convenience so we can discuss this matter in detail? Kindly use the following link to book a suitable time: .
j
running through the same issue. What was the fix? Thanks Shubham!
v
To enable silent transfers between assistants in your Squad: Set the
message
property to an empty string for each assistant destination, and ensure the destination assistant's
firstMessage
is also empty. Example:
Copy code
json
"assistantDestinations": [
  {
    "type": "assistant",
    "assistantName": "NextAssistant",
    "message": ""
  }
],
"firstMessage": "",
"firstMessageMode": "assistant-speaks-first-with-model-generated-message"
This will prevent the assistant from announcing the transfer, making the handoff seamless for the caller. [See full details in the documentation.](https://docs.vapi.ai/squads/silent-transfers) Source: - [Silent transfers documentation](https://docs.vapi.ai/squads/silent-transfers)
a
^^