Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update mycroft.conf #95

Merged
merged 2 commits into from
Jan 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 16 additions & 32 deletions ovos_config/mycroft.conf
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,6 @@
"padatious_medium",
"adapt_medium",
"fallback_medium",
"padatious_low",
"adapt_low",
"fallback_low"
]
},
Expand Down Expand Up @@ -195,11 +193,6 @@
"skill-ovos-stop.openvoiceos"
],

// priority skills to be loaded first
// DEPRECATED: specify skill loading requirements in individual skills instead
// This setting does not affect skills installed via setup.py
"priority_skills": [],

// fallback skill configuration
"fallbacks": {
// you can add skill_id: priority to override the developer defined
Expand Down Expand Up @@ -405,12 +398,6 @@
// sound chunks sent to ww callback (eg, saving recordings)
"wakeword_chunks_to_save": 15,

// if enabled the noise level is saved to a ipc file, useful for
// debuging if microphone is working but writes a lot to disk,
// recommended that you set "ipc_path" to a tmpfs
// DEPRECATED: used by old ovos-listener only
"mic_meter_ipc": false,

// Set 'save_path' to configure the location of files stored if
// 'record_wake_words' and/or 'save_utterances' are set to 'true'.
// WARNING: Make sure that user 'mycroft' has write-access on the
Expand Down Expand Up @@ -466,7 +453,7 @@
"initial_energy_threshold": 1000.0,
// vad module can be any plugin, by default it is not used
// recommended plugin: "ovos-vad-plugin-silero"
"module": "ovos-vad-plugin-webrtcvad",
"module": "ovos-vad-plugin-silero",
"ovos-vad-plugin-silero": {"threshold": 0.2},
"ovos-vad-plugin-webrtcvad": {"vad_mode": 3}
},
Expand Down Expand Up @@ -537,6 +524,7 @@
"listen": true,
"fallback_ww": "hey_mycroft_precise"
},
// in case precise-lite is not installed, attempt to use classic precise
"hey_mycroft_precise": {
"module": "ovos-ww-plugin-precise",
"version": "0.3",
Expand All @@ -547,41 +535,42 @@
"listen": true,
"fallback_ww": "hey_mycroft_vosk"
},
// in case classic precise is not installed, attempt to use vosk
"hey_mycroft_vosk": {
"module": "ovos-ww-plugin-vosk",
"samples": ["hey mycroft", "hey microsoft", "hey mike roft", "hey minecraft"],
"rule": "fuzzy",
"listen": true,
"fallback_ww": "hey_mycroft_pocketsphinx"
},
// in case vosk is not installed, attempt to use pocketsphinx
"hey_mycroft_pocketsphinx": {
"module": "ovos-ww-plugin-pocketsphinx",
"phonemes": "HH EY . M AY K R AO F T",
"threshold": 1e-90,
"lang": "en-us",
"listen": true
},
// default wakeup word to take ovos out of SLEEPING mode,
"wake_up": {
"module": "ovos-ww-plugin-pocketsphinx",
"phonemes": "W EY K . AH P",
"threshold": 1e-20,
"lang": "en-us",
// wakeupwords are only used in SLEEPING mode
"wakeup": true,
"fallback_ww": "wake_up_vosk"
},
// in case pocketsphinx plugin is not installed, attempt to use vosk
"wake_up_vosk": {
"module": "ovos-ww-plugin-vosk",
"rule": "fuzzy",
"samples": ["wake up"],
"lang": "en-us",
// makes this a wakeup word for usage in SLEEPING mode
"wakeup": true
}
},

// DEPRECATED: the concept of enclosure will no longer exist in ovos-core
// this has been replaced with PHAL, provides backwards compat for mycroft.client.enclosure module
"enclosure": {
// Platform name
// Override: SYSTEM (set by specific enclosures)
"platform": "PHAL",

// The NTP sync should only forced on Raspberry Pi based devices.
"ntp_sync_on_boot": false
},

"gui": {
// Override: SYSTEM (set by specific enclosures)
// Uncomment or add "idle_display_skill" to set initial homescreen
Expand Down Expand Up @@ -720,12 +709,7 @@
"type": "ovos_vlc",
"active": true
}
},
// DEPRECATED - this value is only used as a fallback when OCP is not installed
// OCP is a full fledged media player that handles everything from video to playlists
// it plugs into the audio service api to capture playback and provide backwards compat
// OCP will delegate to the audio backends when needed
"default-backend": "OCP"
}
},

"debug": false
Expand Down
Loading