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/stop_pipeline #94

Merged
merged 3 commits into from
Jan 19, 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
11 changes: 7 additions & 4 deletions ovos_config/mycroft.conf
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,13 @@
// 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": [
"stop_high",
"converse",
"padatious_high",
"adapt",
"common_qa",
"fallback_high",
"stop_medium",
"padatious_medium",
"fallback_medium",
"padatious_low",
Expand Down Expand Up @@ -176,10 +178,11 @@
"autogen_meta": false,

// blacklisted skills to not load
// NB: This is the basename() of the directory where the skill lives, so if
// the skill you want to blacklist is in /usr/share/mycroft/skills/mycroft-alarm.mycroftai/
// then you should write `["mycroft-alarm.mycroftai"]` below.
"blacklisted_skills": [],
// NB: This is skill_id of the skill, usually defined in the skills setup.py
"blacklisted_skills": [
// stop skill has been replaced with native core functionality
"skill-ovos-stop.openvoiceos"
],

// priority skills to be loaded first
// DEPRECATED: specify skill loading requirements in individual skills instead
Expand Down
Loading