diff --git a/mycroft/skills/intent_services/__init__.py b/mycroft/skills/intent_services/__init__.py index 8a0355a5d175..3eb5cf37e2f8 100644 --- a/mycroft/skills/intent_services/__init__.py +++ b/mycroft/skills/intent_services/__init__.py @@ -1,13 +1,12 @@ -from ovos_core.intent_services import AdaptService,\ - ConverseService, \ - CommonQAService, \ - FallbackService, \ - PadaciosoService -from ovos_core.intent_services import IntentMatch -from mycroft.skills.intent_services.adapt_service import AdaptIntent, IntentBuilder, Intent +from ovos_core.intent_services import ConverseService, FallbackService +from ovos_adapt.opm import AdaptPipeline as AdaptService +from padacioso.opm import PadaciosoPipeline as PadaciosoService +from ovos_commonqa.opm import CommonQAService +from ovos_plugin_manager.templates.pipeline import IntentMatch +from ovos_workshop.intents import Intent as AdaptIntent, IntentBuilder, Intent try: - from ovos_core.intent_services.padatious_service import PadatiousService, PadatiousMatcher + from ovos_padatious.opm import PadatiousPipeline as PadatiousService, PadatiousMatcher except ImportError: from ovos_utils.log import LOG LOG.warning("padatious not installed") diff --git a/mycroft/skills/intent_services/adapt_service.py b/mycroft/skills/intent_services/adapt_service.py index fa8ac0881abc..84813c685915 100644 --- a/mycroft/skills/intent_services/adapt_service.py +++ b/mycroft/skills/intent_services/adapt_service.py @@ -16,7 +16,8 @@ from ovos_adapt.context import ContextManagerFrame from ovos_adapt.engine import IntentDeterminationEngine from ovos_workshop.intents import IntentBuilder, Intent -from ovos_adapt.opm import ContextManager, AdaptPipeline as AdaptService +from ovos_adapt.context import ContextManager +from ovos_adapt.opm import AdaptPipeline as AdaptService class AdaptIntent(IntentBuilder):