General Query
# support
s
v
Yes, the "summary" field in call details provides a summary of the conversation! 🙂 The summary is a concise overview of the call's content, typically 2-3 lines designed for quick reference. It's automatically generated based on the call transcript after a call ends. Some key points about the summary: - It's generated as part of the call analysis process - It's stored in
call.analysis.summary
- It's customizable via
assistant.analysisPlan.summaryPrompt
- It's different from the full transcript (which contains the entire conversation) You can access it like this:
Copy code
javascript
const call = await vapiClient.calls.get(callId);
if (call.status === 'ended') {
  const summary = call.analysis?.summary;
  console.log('Call Summary:', summary);
}
The quality of the summary depends on the accuracy of the transcript and proper configuration of the summary plan. Sources: - [Discord Discussion](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1342132668699119778) - [Call Analysis Documentation](https://docs.vapi.ai/assistants/call-analysis) - [Discord Discussion on Transcript Accuracy](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1333710576609787986)
Message marked as helpful by @saketh_1201! 🎉
s
what is search plan and create plan in trieve for creating knowledge base
k
The Search Plan defines how the Knowledge Base will retrieve and rank information, and the Create Plan outlines how data is organized and processed within the Knowledge Base.