Skip to content

Commit 934e1bf

Browse files
Isaac SpringerIsaac Springer
authored andcommitted
update docs
1 parent b5cd5a2 commit 934e1bf

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ Minimal meeting recorder with Obsidian export (local filesystem vault).
99
- Captures mic + system audio simultaneously — no virtual audio device required
1010
- Transcribe with faster-whisper (local, runs on CPU)
1111
- Summarize via OpenAI-compatible API (Ollama, OpenAI, OpenRouter, etc.)
12+
- Handles long transcripts automatically — splits into chunks, summarizes each, then merges
1213
- Persona system — choose how recordings are summarized and formatted
14+
- Auto-generate note titles and tags from content
1315
- Export structured markdown notes to Obsidian vault
1416

1517
## Prerequisites
@@ -68,6 +70,9 @@ tinysteno list --vault /path/to/vault
6870

6971
# Show current config
7072
tinysteno config
73+
74+
# Edit config in $EDITOR
75+
tinysteno config --edit
7176
```
7277

7378
## Personas
@@ -113,7 +118,7 @@ schema:
113118
description: Key highlights as strings
114119
```
115120
116-
Schema field types are `string` or `list` (list of strings). Field names must be valid Python identifiers and cannot collide with reserved metadata variables: `title`, `date`, `duration`, `transcript`, `detected_language`.
121+
Schema field types are `string` or `list` (list of strings). Field names must be valid Python identifiers and cannot collide with reserved metadata variables: `title`, `date`, `duration`, `transcript`, `detected_language`, `generated_tags`.
117122

118123
**`template.md`** receives all schema fields plus the metadata variables above as Jinja2 context.
119124

@@ -144,6 +149,7 @@ api_key: "ollama"
144149
base_url: "http://localhost:11434/v1"
145150
model: "llama3.2:3b"
146151
auto_title: true # generate note titles from content
152+
auto_tags: true # generate tags from content
147153
148154
# Transcription
149155
# Model sizes (speed ↔ accuracy): tiny · base · small · medium · large
@@ -168,7 +174,7 @@ Note format is controlled by the active persona's template. The default persona
168174
---
169175
created: 2024-01-15 14:30
170176
type: meeting
171-
tags: [meeting]
177+
tags: [meeting, budget, planning]
172178
duration: 00:45:12
173179
participants: Alice, Bob
174180
---

0 commit comments

Comments
 (0)