You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For an intent file like this:
(Start|Set) (a|) 5 minute timer (called|for) {name}.
The phrase:
"start a 5 minute timer called lasagna"
Return the entity "name" as "called lasagna".
However it does correctly parse:
"set a 5 minute timer called lasagna"
Returning the entity "name" as "lasagna".
The text was updated successfully, but these errors were encountered:
Are you saying there should be guaranteed perfect matches on entities?
I've also had it fail to return values that weren't optional. For example, how many miles is 4 shouldn't work, if I understand the intent parsing correctly.
I think what is 4 plus 4 definitely shouldn't work.
For an intent file like this:
(Start|Set) (a|) 5 minute timer (called|for) {name}.
The phrase:
"start a 5 minute timer called lasagna"
Return the entity "name" as "called lasagna".
However it does correctly parse:
"set a 5 minute timer called lasagna"
Returning the entity "name" as "lasagna".
The text was updated successfully, but these errors were encountered: