CosmoAI commited on
Commit
c073f0e
·
1 Parent(s): 4358329

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +56 -56
app.py CHANGED
@@ -107,62 +107,62 @@ def responsenew(data):
107
  """,
108
  )
109
  print(intent)
110
- respo = {"message": intent.last, "action": "nothing", "function": "nothing"}
111
- # if intent.last is not None:
112
- # if "purchase_coins" in intent.last:
113
- # respo = {
114
- # "message": "Click the button below to view Premium Services and Coin Recharge options: ",
115
- # "action": "payment",
116
- # "function": "nothing",
117
- # }
118
- # elif "view_friends" in intent.last:
119
- # respo = {
120
- # "message": "Here's the list of your friends: ",
121
- # "action": "show_friends",
122
- # "function": "nothing",
123
- # }
124
- # elif "view_groups" in intent.last:
125
- # respo = {
126
- # "message": "You are member of following groups: ",
127
- # "action": "show_mygroups",
128
- # "function": "nothing",
129
- # }
130
- # elif "view_communities" in intent.last:
131
- # respo = {
132
- # "message": "You are part of following communities🫶: ",
133
- # "action": "show_mycommunities",
134
- # "function": "nothing",
135
- # }
136
- # elif "shared_reminders" in intent.last:
137
- # respo = {
138
- # "message": "Here's the list of your shared reminders: ",
139
- # "action": "shared_reminders",
140
- # "function": "nothing",
141
- # }
142
- # elif "my_routines" in intent.last:
143
- # respo = {
144
- # "message": "Here's the list of your routines: ",
145
- # "action": "myroutines",
146
- # "function": "nothing",
147
- # }
148
- # elif "cosmo_name" in intent.last:
149
- # respo = {
150
- # "message": "My name is Cosmo. I am your friendly personal assistant.",
151
- # "action": "nothing",
152
- # "function": "nothing",
153
- # }
154
- # else:
155
- # respo = {
156
- # "message": response.last,
157
- # "action": "nothing",
158
- # "function": "nothing",
159
- # }
160
- # else:
161
- # respo = {
162
- # "message": "Unable to understand.",
163
- # "action": "nothing",
164
- # "function": "nothing",
165
- # }
166
  return json.dumps(respo)
167
 
168
 
 
107
  """,
108
  )
109
  print(intent)
110
+ # respo = {"message": intent.last, "action": "nothing", "function": "nothing"}
111
+ if intent.last is not None:
112
+ if "purchase_coins" in intent.last:
113
+ respo = {
114
+ "message": "Click the button below to view Premium Services and Coin Recharge options: ",
115
+ "action": "payment",
116
+ "function": "nothing",
117
+ }
118
+ elif "view_friends" in intent.last:
119
+ respo = {
120
+ "message": "Here's the list of your friends: ",
121
+ "action": "show_friends",
122
+ "function": "nothing",
123
+ }
124
+ elif "view_groups" in intent.last:
125
+ respo = {
126
+ "message": "You are member of following groups: ",
127
+ "action": "show_mygroups",
128
+ "function": "nothing",
129
+ }
130
+ elif "view_communities" in intent.last:
131
+ respo = {
132
+ "message": "You are part of following communities🫶: ",
133
+ "action": "show_mycommunities",
134
+ "function": "nothing",
135
+ }
136
+ elif "shared_reminders" in intent.last:
137
+ respo = {
138
+ "message": "Here's the list of your shared reminders: ",
139
+ "action": "shared_reminders",
140
+ "function": "nothing",
141
+ }
142
+ elif "my_routines" in intent.last:
143
+ respo = {
144
+ "message": "Here's the list of your routines: ",
145
+ "action": "myroutines",
146
+ "function": "nothing",
147
+ }
148
+ # elif "cosmo_name" in intent.last:
149
+ # respo = {
150
+ # "message": "My name is Cosmo. I am your friendly personal assistant.",
151
+ # "action": "nothing",
152
+ # "function": "nothing",
153
+ # }
154
+ # else:
155
+ respo = {
156
+ "message": response.last,
157
+ "action": "nothing",
158
+ "function": "nothing",
159
+ }
160
+ else:
161
+ respo = {
162
+ "message": "Unable to understand.",
163
+ "action": "nothing",
164
+ "function": "nothing",
165
+ }
166
  return json.dumps(respo)
167
 
168