automatic-azure
automatic-azure5mo ago

Not getting Analysis after end of call: log: "Please provide Transcript of the call"

Hi, I set up a call agent with Vapi and I was using it fine, getting structured data and the analysis in my webhook endpoint but starting from this morning it's not making the analysis and extracting the structured data saying " Please provide Transcript of the call". Could you please help me out on this part quick and give me a solution since my system is running on production. Thank You Call Id: 86ac5178-99eb-4048-a18e-12e609e6574d 6e15c84a-dc30-48bd-9be0-94839479789b
8 Replies
Vapi Support Bot
It appears that Vapi's analysis requires a call transcript, and the error "Please provide Transcript of the call" means the transcript is missing, so analysis cannot proceed. Actionable next step:
Please check if your call recording and transcription settings are enabled in your assistant's configuration. If everything appears correct, contact Vapi support at support@vapi.ai with your call IDs for urgent assistance, as this may be a backend or account-specific issue beyond configuration changes. Sources: - Call analysis documentation - Support options
⤵️ Mention @Vapi Support Bot for follow-ups 🐥
continuing-cyan
continuing-cyan5mo ago
I'm having the same issue! Call recording and transcription settings are enabled. But the call transcript it clearly not being passed through because even the name of the caller is not being picked up
Kyle Brunker
Kyle Brunker5mo ago
Hey Elias, Thanks for bringing this to our attention. The team is working on it and will fix it by the end of the day. In the meantime, use the API to update your assistant's analysis plan. The dashboard update overrides the plan, causing this issue. Let me know if you need further help.
exotic-emerald
exotic-emerald5mo ago
And how do we use the API to update. Smh Any update? Haven’t got an email response either?
Kyle Brunker
Kyle Brunker5mo ago
It should be fixed now, can you try again?
exotic-emerald
exotic-emerald5mo ago
Any update? Haven’t got an email response either?
Vapi Support Bot
To update your assistant's analysis plan via the API, use the following cURL command (replace <assistant_id> and <token> with your actual values):
curl -X PATCH https://api.vapi.ai/assistant/<assistant_id> \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{
"analysisPlan": {
"summaryPrompt": "You are an expert note-taker. You will be given a transcript of a call. Summarize the call in 2-3 sentences, if applicable.",
"structuredDataPrompt": "You are an expert data extractor. You will be given a transcript of a call. Extract structured data per the JSON Schema.",
"structuredDataSchema": {
"type": "object",
"properties": {
"field1": { "type": "string" },
"field2": { "type": "number" }
},
"required": ["field1", "field2"]
},
"successEvaluationPrompt": "You are an expert call evaluator. You will be given a transcript of a call and the system prompt of the AI participant. Determine if the call was successful based on the objectives inferred from the system prompt.",
"successEvaluationRubric": "NumericScale"
}
}'
curl -X PATCH https://api.vapi.ai/assistant/<assistant_id> \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{
"analysisPlan": {
"summaryPrompt": "You are an expert note-taker. You will be given a transcript of a call. Summarize the call in 2-3 sentences, if applicable.",
"structuredDataPrompt": "You are an expert data extractor. You will be given a transcript of a call. Extract structured data per the JSON Schema.",
"structuredDataSchema": {
"type": "object",
"properties": {
"field1": { "type": "string" },
"field2": { "type": "number" }
},
"required": ["field1", "field2"]
},
"successEvaluationPrompt": "You are an expert call evaluator. You will be given a transcript of a call and the system prompt of the AI participant. Determine if the call was successful based on the objectives inferred from the system prompt.",
"successEvaluationRubric": "NumericScale"
}
}'
This should restore analysis if it was disabled by a dashboard update. For more details, see the API reference. Sources: - Update Assistant API Reference - Call Analysis Documentation
Kyle Brunker
Kyle Brunker5mo ago
It is fixed.

Did you find this page helpful?