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
// just a constant string to access the user values
22
+
constUSER_INFO='user_info';
23
+
21
24
/**
22
25
* We will use compromise NLP library for text-matching.
23
26
* http://compromise.cool
@@ -36,8 +39,10 @@ class DailogBot {
36
39
this.conversationState=conversationState;
37
40
this.userState=userState;
38
41
42
+
// create accessor for the conversation state. This enables us to capture and store conversation specific properties.
43
+
// Also create an accessor for userProfile. This enables us to capture and store user-specific properties.
44
+
// For more info either see here: https://docs.microsoft.com/en-us/azure/bot-service/bot-builder-howto-v4-state?view=azure-bot-service-4.0&tabs=javascript
0 commit comments