From d045d6bec652f724605c8a31ff4d3cecccd53f8a Mon Sep 17 00:00:00 2001 From: miro Date: Fri, 18 Oct 2024 06:28:32 +0100 Subject: [PATCH] imports compat --- mycroft/skills/intent_services/adapt_service.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mycroft/skills/intent_services/adapt_service.py b/mycroft/skills/intent_services/adapt_service.py index 84813c685915..447e1e3904cd 100644 --- a/mycroft/skills/intent_services/adapt_service.py +++ b/mycroft/skills/intent_services/adapt_service.py @@ -13,11 +13,11 @@ # limitations under the License. # """An intent parsing service using the Adapt parser.""" -from ovos_adapt.context import ContextManagerFrame from ovos_adapt.engine import IntentDeterminationEngine from ovos_workshop.intents import IntentBuilder, Intent -from ovos_adapt.context import ContextManager from ovos_adapt.opm import AdaptPipeline as AdaptService +from ovos_bus_client.session import IntentContextManagerFrame as ContextManagerFrame, \ + IntentContextManager as ContextManager class AdaptIntent(IntentBuilder):