Hey, I have a tool that is supposed to
# general-english
a
Hey, I have a tool that is supposed to transfer a call with summary but it is not doing the summary... anyone know how to troubleshoot this
k
Ensure the transfer call tool is enabled with mode: warm-transfer-with-summary and a valid summary plan using {{transcript}}, then check your assistant config and call logs for errors.
a
Copy code
{
  "destination": {
    "type": "sip",
    "sipUri": "sip:+13477334308@sip.telnyx.com",
    "transferPlan": {
      "mode": "warm-transfer-wait-for-operator-to-speak-first-and-then-say-summary",
      "message": "",
      "sipVerb": "refer",
      "summaryPlan": {
        "enabled": true,
        "timeoutSeconds": 5,
        "useAssistantLlm": false
      }
    }
  }
}
k
The summary plan is missing
a
let me try that
@Kings_big💫 - can you help me write the JSON?
Copy code
{
  "destination": {
    "type": "sip",
    "sipUri": "sip:+12162323252@sip.telnyx.com",
    "transferPlan": {
      "mode": "warm-transfer-wait-for-operator-to-speak-first-and-then-say-summary",
      "sipVerb": "refer",
      "summaryPlan": {
        "messages": [
          {
            "role": "system",
            "content": "You are an expert note-taker. You will be given a transcript of a call. Summarize the call in 2-3 sentences. DO NOT return anything except the summary."
          },
          {
            "role": "user",
            "content": "Here is the transcript:{{transcript}}"
          }
        ],
        "enabled": true,
        "timeoutSeconds": 5,
        "useAssistantLlm": true
      }
    }
  }
}
is this correct? If so, its still not saying anything
We also tried { "destination": { "type": "sip", "sipUri": "sip:+12162323252@sip.telnyx.com", "transferPlan": { "mode": "warm-transfer-say-message", "message" : "Hey Mario, I have James on the line" } } } and it did not play anything
2 Views