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
Based on various discussions related to #268 (raiseIntentForContext) it was suggested that a new issue be made for Intent Resolution to also include the selected Intent
Use Case:
An app that calls raiseIntentForContext, when it receives an IntentResolution would like to know what the chosen Intent was.
Workflow Description
const resolution = await desktopAgent.raiseIntentForContext(context);
switch (resolution.intent) {
case "a":
// do something with resolution.data
break;
case "b":
// do something different with resolution.data
break;
}
The text was updated successfully, but these errors were encountered:
Enhancement Request
Based on various discussions related to #268 (raiseIntentForContext) it was suggested that a new issue be made for Intent Resolution to also include the selected Intent
Use Case:
An app that calls raiseIntentForContext, when it receives an IntentResolution would like to know what the chosen Intent was.
Workflow Description
The text was updated successfully, but these errors were encountered: