Skip to content

Commit

Permalink
update config (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl authored Aug 7, 2023
1 parent 44942c9 commit e69ed97
Showing 1 changed file with 24 additions and 6 deletions.
30 changes: 24 additions & 6 deletions ovos_config/mycroft.conf
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,24 @@
# internet_skills -> skills with internet requirements
"ready_settings": ["skills"],

// Intent Pipeline / plugins config
"intents" : {
// the pipeline is a ordered set of frameworks to send an utterance too
// if one of the frameworks fails the next one is used, until an answer is found
// NOTE: if padatious is not installed, it will be replaced with padacioso (much slower)
// in the future these will become plugins, and new pipeline stages can be added by end users
"pipeline": [
"converse",
"padatious_high",
"adapt",
"common_qa",
"fallback_high",
"padatious_medium",
"fallback_medium",
"padatious_low",
"fallback_low"
]
},
// General skill values
"skills": {

Expand Down Expand Up @@ -289,9 +307,9 @@
// This section controls what providers should be used by each 3rd party API
"microservices": {
// auto == backend from "server" section above
// auto / wolfram / personal
// auto / wolfram / personal
"wolfram_provider": "auto",
// auto / owm / personal
// auto / owm / personal
"weather_provider": "auto",
// auto / osm / personal
"geolocation_provider": "auto",
Expand Down Expand Up @@ -540,7 +558,7 @@
"gui": {
// Override: SYSTEM (set by specific enclosures)
// Uncomment or add "idle_display_skill" to set initial homescreen
// "idle_display_skill": "skill-ovos-homescreen.openvoiceos",
"idle_display_skill": "skill-ovos-homescreen.openvoiceos",

// Extensions provide additional GUI platform support for specific devices
// Currently supported devices: smartspeaker, bigscreen or generic
Expand All @@ -549,7 +567,7 @@
// Generic extension can additionaly provide homescreen functionality
// homescreen support is disabled by default for generic extension
"generic": {
"homescreen_supported": false
"homescreen_supported": true
}
},

Expand Down Expand Up @@ -635,7 +653,7 @@
"padatious": {
// fallback settings for padacioso (pure regex)
// set regex_only to False to re-enable padatious (ovos-core < 0.0.8)
"regex_only": true,
"regex_only": false,
"fuzz": true
},

Expand All @@ -653,7 +671,7 @@
// message.context may contains a source and destination
// native audio (playback / TTS) will only be played if a
// message destination is a native_source or if missing (considered a broadcast)
"native_sources": ["debug_cli", "audio"],
"native_sources": ["debug_cli", "audio", "mycroft-gui"],

"backends": {
"OCP": {
Expand Down

0 comments on commit e69ed97

Please sign in to comment.