Quick Start
1
Simple Usage
Transcribe a recording, then produce notes.
2
Add Q&A
Save the transcript to disk and index it so an agent can answer follow-up questions.
How It Works
Three primitives run in sequence: transcribe, summarise, then answer questions.User Interaction Flow
Drop a recording into the folder, run the script, read the notes, then keep asking questions.Full Example
The complete script composes all three primitives end to end.- Full script
- Shortened
Choosing an STT Provider
Pass the provider string toAudioAgent(llm=...). Start with Whisper, switch for speed or accuracy.
See Audio Overview, Groq, and Deepgram for setup and exact model strings.
Common Patterns
Save notes, batch a folder, or persist memory across meetings.- Save to Markdown
- Batch a directory
- Persist with Memory
Best Practices
Keep the transcript on disk
Keep the transcript on disk
knowledge=[...] indexes files by path, so write the transcript to disk before passing it.Match the model to the task
Match the model to the task
Use a cheaper LLM for summarising long transcripts and a stronger one for Q&A accuracy.
Redact PII before persisting
Redact PII before persisting
Meeting audio often contains personal data — strip sensitive details before saving transcripts.
Instruct the notetaker clearly
Instruct the notetaker clearly
Tell the notetaker to use only the transcript so it does not invent action items.
Related
Knowledge
Index files for retrieval-augmented Q&A.
Audio Overview
Speech-to-text providers and setup.
Meeting Minutes Action Items
Text-transcript recipe variant.
Memory
Persist context across meetings.

