The warm transfer isn't working because sipVerb: "refer" in your config forces a cold transfer, regardless of the transfer mode setting.
What happened: Your call (019c27a4-4725-766c-9525-a0867fd507bd) executed a cold transfer instead of warm transfer with summary.
Why: When sipVerb: "refer" is set, it overrides warm-transfer-say-summary and forces a SIP REFER (cold transfer). The summary generation also failed because the LLM received empty messages—but this is secondary since the cold transfer would happen anyway.
Fix:
• Remove sipVerb: "refer" from your transfer tool configuration
• Keep transferMode: "warm-transfer-say-summary" as-is
• If you're using a custom prompt for the summary, ensure the conversation has messages before the transfer triggers
After removing the sipVerb setting, the system will:
1. Generate the call summary using your custom prompt
2. Dial the destination
3. Play the summary to the receiving agent
4. Connect the caller
Let me know if you need help locating where sipVerb is configured in your setup, or if the issue persists after removing it.