| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- {
- "server": {
- "host": "localhost",
- "port": 2101,
- "reconnect_interval_seconds": 5.0,
- "connection_timeout_seconds": 10.0
- },
- "audio": {
- "sample_rate": 16000,
- "channels": 1,
- "bit_depth": 16,
- "music_sample_rate": 44100,
- "music_channels": 2,
- "music_bit_depth": 16,
- "input_device": null,
- "output_device": null,
- "buffer_size": 4096,
- "output_volume": 60,
- "output_muted": false,
- "input_volume": 80,
- "input_muted": false,
- "output_mixer_control": "",
- "input_mixer_control": "",
- "output_speakers": [],
- "output_combine_sink_name": "trixy_combined",
- "input_microphones": [],
- "input_mix_sink_name": "trixy_mics_combined"
- },
- "wakeword": {
- "models": [
- "hey_jarvis"
- ],
- "threshold": 0.8,
- "model_directory": "models/wakeword",
- "use_onnx": true,
- "enabled": true,
- "silence_timeout_seconds": 1.8,
- "max_recording_seconds": 60.0,
- "no_speech_timeout_seconds": 5.0,
- "pre_buffer_seconds": 0.5,
- "wakeword_cooldown_seconds": 3.0
- },
- "identity": {
- "room": "Living Room",
- "alias": "Patrick",
- "mac_address": ""
- },
- "logging": {
- "level": "INFO",
- "log_directory": "logs"
- },
- "led": {
- "enabled": false,
- "gpio_pin": 18,
- "led_count": 1,
- "type": "single",
- "brightness": 80,
- "states": {
- "boot": {
- "color": {
- "r": 0,
- "g": 255,
- "b": 0
- },
- "animation": "solid",
- "speed": 100
- },
- "standby": {
- "color": {
- "r": 0,
- "g": 60,
- "b": 0
- },
- "animation": "solid",
- "speed": 100
- },
- "wakeword": {
- "color": {
- "r": 0,
- "g": 0,
- "b": 255
- },
- "animation": "double-blink",
- "speed": 120
- },
- "listening": {
- "color": {
- "r": 255,
- "g": 0,
- "b": 0
- },
- "animation": "solid",
- "speed": 100
- },
- "thinking": {
- "color": {
- "r": 255,
- "g": 165,
- "b": 0
- },
- "animation": "pulse",
- "speed": 80
- },
- "speaking": {
- "color": {
- "r": 0,
- "g": 100,
- "b": 255
- },
- "animation": "breathe",
- "speed": 60
- },
- "error": {
- "color": {
- "r": 255,
- "g": 0,
- "b": 0
- },
- "animation": "triple-blink",
- "speed": 150
- },
- "disconnect": {
- "color": {
- "r": 255,
- "g": 0,
- "b": 0
- },
- "animation": "pulse",
- "speed": 40
- }
- }
- },
- "config_port": 2105,
- "config_listener_enabled": false,
- "assets_directory": "assets",
- "profile": "default"
- }
|