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 #136

Merged
merged 5 commits into from
Jun 22, 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
25 changes: 25 additions & 0 deletions ovos_config/mycroft.conf
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,31 @@

// Intent Pipeline / plugins config
"intents" : {
// the position in the pipeline where each engine matches can be configured in "pipeline" section below

// adjust confidence thresholds for adapt pipeline
// adapt intents with conf lower than these values will be ignored
"adapt": {
"conf_high": 0.65,
"conf_med": 0.45,
"conf_low": 0.25
},

// adjust confidence thresholds for padatious pipeline
// padatious/padacioso intents with conf lower than these values will be ignored
"padatious": {
"conf_high": 0.95,
"conf_med": 0.8,
"conf_low": 0.5,

// path to save trained intent files
// by default uses XDG directories if not set
//"intent_cache": "~/.local/share/mycroft/intent_cache/",

// set to false if multithreading is causing issues
"single_thread": false
},

"OCP": {
// legacy forces old audio service instead of OCP
"legacy": false,
Expand Down
Loading