forked from SudarshanSuryaprakash/voice-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml
More file actions
48 lines (40 loc) · 904 Bytes
/
config.yaml
File metadata and controls
48 lines (40 loc) · 904 Bytes
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
38
39
40
41
42
43
44
45
46
47
48
# Jupiter Voice Configuration
wake:
# Path to wake word model. Use "hey_jarvis" for the built-in model,
# or a path like "assets/hey_jupiter.onnx" for a custom trained model.
model: "hey_jarvis"
threshold: 0.5
inference_framework: "onnx"
stt:
model: "distil-medium.en"
batch_size: 12
chunk_duration: 3.0
chunk_overlap: 0.5
tts:
voice: "af_heart"
speed: 1.0
lang: "en-us"
fallback_to_macos_say: true
close_phrase:
primary: "sudo out"
alternatives:
- "pseudo out"
- "sue do out"
- "sudo doubt"
- "su do out"
audio:
sample_rate: 16000
channels: 1
chunk_size: 1280
device: null # null = default device
gateway:
session_id: "agent:main:main"
timeout: 120
# openclaw_bin: null # auto-detect from PATH
cues:
enabled: true
wake_detected: "assets/ding.wav"
sending: "assets/send.wav"
error: "assets/error.wav"
logging:
level: "INFO"