-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat/converse_intents #12
Conversation
What's the relationship with conversational intents and intent layers? |
different concepts, conversational intents replace the converse stage completely. Instead of using a lot of voc_match in converse you just define intents and do not need to change paradigm to implement the voice interaction intent layers are regular intent groups the skill dev turns on/off whenever needed, they dont depend on converse at all. It is common to use converse to manipulate layers, but its just a use case not part of the design |
marked as draft waiting for intent plugins |
add support for .intent files in converse method a new decorator can be used to define internal intent handlers
2070014
to
52af7b1
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## dev #12 +/- ##
======================================
Coverage ? 53.60%
======================================
Files ? 36
Lines ? 3785
Branches ? 0
======================================
Hits ? 2029
Misses ? 1756
Partials ? 0 ☔ View full report in Codecov by Sentry. |
add support for .intent files in converse method
a new decorator can be used to define internal intent handlers
these intents only trigger after an initial interaction, essentially they are only follow up questions
NOTE: if these intents trigger, they are called INSTEAD of
converse
ported from NeonGeckoCom/NeonCore#48