Skip to main content
Turn a meeting recording into a concise summary, action items, and a follow-up Q&A agent using three stock primitives.

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.

Choosing an STT Provider

Pass the provider string to AudioAgent(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.
See Memory to persist context across meetings.

Best Practices

knowledge=[...] indexes files by path, so write the transcript to disk before passing it.
Use a cheaper LLM for summarising long transcripts and a stronger one for Q&A accuracy.
Meeting audio often contains personal data — strip sensitive details before saving transcripts.
Tell the notetaker to use only the transcript so it does not invent action items.

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.