-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.yaml
More file actions
37 lines (32 loc) · 1.01 KB
/
config.example.yaml
File metadata and controls
37 lines (32 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
agent:
name: "YourName"
trigger_names: ["YourName", "yourname"] # Add common ASR misrecognitions of your name
confidence_threshold: 0.7
max_response_sentences: 3
skip_name_check: true # For 2-person calls, skip regex name check
silence_timeout_ms: 5000 # Wait 5s of silence before processing
audio:
capture_device: "BlackHole 2ch"
playback_device: "MacBook Pro Speakers"
sample_rate: 16000
channels: 1
block_size: 480 # 30ms chunks at 16kHz
asr:
engine: "voxtral.c"
binary_path: "./vendor/voxtral.c/voxtral"
model_path: "./vendor/voxtral.c/voxtral-model"
processing_interval: 2.0 # seconds between ASR runs
llm:
provider: "ollama"
model: "qwen3:8b" # or llama3.1:8b, phi4-mini, gemma3:4b
base_url: "http://localhost:11434" # or remote machine IP
temperature: 0.7
max_tokens: 200
intent_temperature: 0.1
tts:
provider: "voicebox"
base_url: "http://localhost:17493"
voice_profile_id: "" # Auto-detected if empty
language: "en"
meeting:
context_file: "./meetings/current.md"