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
The calendar example's actions are similar to intents that one would define for Dialogflow or Alexa. How to use OpenAI as an intent NLU engine?
The issue is that "yes" and "yes, please" matches the YesIntent but "ok" or other affirmative responses do not.
Inputs:
yes
ok
sure
i will
yes, please
Type schema:
// The following types define the structure of an object of type BotIntent that represents a user request that matches most closely to the sample or synonymsexporttypeBotIntent=YesIntent|NoIntent|UnknownIntent;// if the user types text that closely matches 'yes' or a synonym, this intent is usedexporttypeYesIntent={intentName: 'YesIntent';sample: 'yes';text: string;};// if the user types text that closely matches 'no' or a synonym, this intent is usedexporttypeNoIntent={intentName: 'NoIntent';sample: 'no';text: string;};// if the user types text that can not easily be understood as a bot intent, this intent is usedexportinterfaceUnknownIntent{intentName: 'UnknownIntent';sample: 'unknown';// text typed by the user that the system did not understandtext: string;}
How to model more complicated intents with required and optional entities?
The text was updated successfully, but these errors were encountered:
The
calendar
example's actions are similar to intents that one would define for Dialogflow or Alexa. How to use OpenAI as an intent NLU engine?The issue is that "yes" and "yes, please" matches the YesIntent but "ok" or other affirmative responses do not.
Inputs:
Type schema:
How to model more complicated intents with required and optional entities?
The text was updated successfully, but these errors were encountered: