fix: include padacioso in the default intent pipeline - #275
Conversation
The default "intents.pipeline" only listed matchers that require extra plugins (padatious, adapt, OCP, m2v). None of these ship with a bare ovos-core install, while padacioso does, so a fresh install booted and loaded skills but matched no utterances. Add ovos-padacioso-pipeline-plugin-high right after the padatious high matcher and ovos-padacioso-pipeline-plugin-medium in the medium tier. Missing plugins are skip-filtered at runtime, so installs that do have padatious keep preferring it within each confidence tier. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
Warning Review limit reached
Next review available in: 55 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## dev #275 +/- ##
=====================================
Coverage 0.00% 0.00%
=====================================
Files 10 10
Lines 837 857 +20
=====================================
- Misses 837 857 +20 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Summary
The shipped default
intents.pipelineonly lists matchers that require extra plugins (padatious, adapt, OCP, m2v). None of these ship with a barepip install ovos-core[mycroft], while padacioso is a base dependency — yet it was absent from the pipeline. A fresh install booted and loaded skills but every utterance went unmatched.Changes
ovos-padacioso-pipeline-plugin-highimmediately afterovos-padatious-pipeline-plugin-high, so padatious keeps priority within the high-confidence tier when installed.ovos-padacioso-pipeline-plugin-mediumin the medium tier (afterovos-adapt-pipeline-plugin-medium, before the medium fallback).Tests
test/unittests/test_default_pipeline.pyloads the shippedmycroft.confthroughload_commented_jsonand asserts the padacioso entries are present and correctly ordered relative to their tier.🤖 Generated with Claude Code