-
-
Notifications
You must be signed in to change notification settings - Fork 2
Intents/Slots history for awareness #6
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is neededquestionFurther information is requestedFurther information is requested
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is neededquestionFurther information is requestedFurther information is requested
Type
Fields
Give feedbackNo fields configured for issues without a type.
We need to provide an history of intents with their slots in the
Agent.With that in mind, when parsing a new sentence, if some slots couldn't have been extracted, we could try to look for them in the recent history before calling the skill handler.
The idea behind this is to be able to make something like this:
As a side effect, refering to #4 :
should work too :)
Open questions are:
Regarding the implementation, nothing breaking here, a method such as
get_available_slots(intent_name)should be added toInterpreterand returns the list of possible slot names given an intent (as per the training data)`.