m
04/08/2025, 8:13 PMVapi Support Bot
04/08/2025, 8:15 PMfirstMessage
is set to an empty string and the firstMessageMode
is set to assistant-speaks-first-with-model-generated-message
as mentioned in the [silent transfers documentation](https://docs.vapi.ai/squads/silent-transfers).
2. **Transfer Tool Configuration**: When using the transferTool
object, ensure the message
parameter is set to an empty string:
javascript
const transferTool = {
type: 'transferCall',
destinations: [{
type: 'assistant',
assistantName: 'Squad Member 2',
transferMode: 'rolling-history',
message: '' // Silent transfer
}]
};
3. **Request Start Message**: According to [troubleshooting information](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1334191012620402730), adding the request start message inside your tool could be causing the "transferring call to..." message.
4. **Check `assistantOverrides`**: Ensure that assistantOverrides
are set correctly when using the transferCall
tool.Vapi Support Bot
04/08/2025, 8:15 PMKyle Brunker
04/08/2025, 8:24 PMm
04/08/2025, 8:36 PMm
04/08/2025, 8:37 PMm
04/08/2025, 8:43 PMKyle Brunker
04/10/2025, 10:05 PM