Closed krisgesling closed 1 month ago
I think the issue is that we are detaching intents and not keywords.
In the beginning the keywords were shared across skills so I guess that's why they aren't removed. Nowadays we tag each keyword to be skill specific so we should be able to remove them as well...
Closing Issue since we're archiving the repo
Interested in any comments or hypotheses on this one...
It was flagged that some utterances like "tell me about the royal bank of canada" were not receiving any response from Mycroft. So first stop was to investigate the Skill itself.
.*(wiki|for|about|wikipedia)(?! (for|about)) the (?P<ArticleTitle>.+)
correctly triggered the intent despite it now returning a lower confidence of 0.1875..*(wiki|for|about|wikipedia)(?! (for|about))( the|) (?P<ArticleTitle>.+)
extractedArticleTitle
as "the" instead of "royal bank of canada"So I'm presuming that it's something in the regex registration or caching, but thought I'd seek advice before diving too deep into the rabbit hole.