diff --git a/ovos_core/intent_services/__init__.py b/ovos_core/intent_services/__init__.py index b468559ca4a..b7bf71425c4 100644 --- a/ovos_core/intent_services/__init__.py +++ b/ovos_core/intent_services/__init__.py @@ -17,7 +17,6 @@ from ovos_adapt.opm import AdaptPipeline from ovos_commonqa.opm import CommonQAService -from padacioso.opm import PadaciosoPipeline as PadaciosoService from ocp_pipeline.opm import OCPPipelineMatcher from ovos_bus_client.message import Message @@ -33,6 +32,7 @@ from ovos_utils.lang import standardize_lang_tag from ovos_utils.log import LOG, log_deprecation, deprecated from ovos_utils.metrics import Stopwatch +from padacioso.opm import PadaciosoPipeline as PadaciosoService class IntentService: @@ -355,6 +355,7 @@ def handle_utterance(self, message: Message): lang = self.disambiguate_lang(message) utterances = message.data.get('utterances', []) + LOG.info(f"Parsing utterance: {utterances}") stopwatch = Stopwatch() @@ -465,6 +466,7 @@ def handle_get_intent(self, message): # Loop through the matching functions until a match is found. for pipeline, match_func in self.get_pipeline(skips=["converse", + "common_qa", "fallback_high", "fallback_medium", "fallback_low"], diff --git a/ovos_core/intent_services/converse_service.py b/ovos_core/intent_services/converse_service.py index 215cea57a63..2c229e39eea 100644 --- a/ovos_core/intent_services/converse_service.py +++ b/ovos_core/intent_services/converse_service.py @@ -335,6 +335,7 @@ def converse_with_skills(self, utterances: List[str], lang: str, message: Messag if skill_id in session.blacklisted_skills: LOG.debug(f"ignoring match, skill_id '{skill_id}' blacklisted by Session '{session.session_id}'") continue + LOG.debug(f"Attempting to converse with skill: {skill_id}") if self.converse(utterances, skill_id, lang, message): state = session.utterance_states.get(skill_id, UtteranceState.INTENT) return PipelineMatch(handled=state != UtteranceState.RESPONSE,