-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrash.rtf
274 lines (229 loc) · 6.93 KB
/
trash.rtf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
- intent: affirm
examples: |
- yes
- y
- ya
- indeed
- of course
- sounds good
- correct
- ok
- true
- that is true
- that's true
- sure
- right
- yapp
- all right
- okay
- okey
- yeah
- yep
- intent: deny
examples: |
- no
- n
- never
- I don't think so
- don't like that
- no way
- not really
- false
- wrong
- nope
- nop
- incorrect
- not at all
- noo
- impossible
- i didn't
- no i did not
- not true
- you are mistaken
- mistaken
- story: interactive_story_1
steps:
- intent: greet
- action: utter_greet
- action: utter_offer
- intent: user_question
entities:
- country: usa
- pop_cap: population
- slot_was_set:
- pop_cap: population
- slot_was_set:
- country: usa
- action: validate_user_question
- action: action_answer
- intent: user_question
entities:
- pop_cap: capital
- country: russia
- slot_was_set:
- pop_cap: capital
- slot_was_set:
- country: russia
- action: validate_user_question
- action: action_answer
- intent: user_question
entities:
- pop_cap: population
- action: validate_user_question
- action: action_answer
- intent: user_question
entities:
- country: finland
- slot_was_set:
- country: finland
- action: validate_user_question
- action: action_answer
- intent: user_question
entities:
- country: japan
- pop_cap: population
- slot_was_set:
- pop_cap: population
- slot_was_set:
- country: japan
- action: validate_user_question
- action: action_answer
- intent: bot_challenge
- action: utter_iamabot
- story: interactive_story_2
steps:
- intent: greet
- action: utter_greet
- action: utter_offer
- intent: user_question
entities:
- country: usa
- pop_cap: population
- slot_was_set:
- pop_cap: population
- slot_was_set:
- country: usa
- action: validate_user_question
- action: action_answer
- intent: user_question
entities:
- pop_cap: capital
- country: russia
- slot_was_set:
- pop_cap: capital
- slot_was_set:
- country: russia
- action: validate_user_question
- action: action_answer
- intent: user_question
entities:
- pop_cap: population
- action: validate_user_question
- action: action_answer
- intent: user_question
entities:
- country: finland
- slot_was_set:
- country: finland
- action: validate_user_question
- action: action_answer
- intent: user_question
entities:
- country: japan
- pop_cap: population
- slot_was_set:
- pop_cap: population
- slot_was_set:
- country: japan
- action: validate_user_question
- action: action_answer
# check if the country slot value is in our database
else:
get_countries = requests.get(f"{url}Countries").json()
try:
if get_countries["success"]==1:
if country.title() not in get_countries["body"].values():
dispatcher.utter_message(response = "utter_not_found")
return {"country": None}
else:
return {"country", country.title()}
else:
dispatcher.utter_message(response = "utter_server_failure")
return {"country": None}
except:
dispatcher.utter_message(response = "utter_server_failure")
return {"country": None}
if not pop_cap:
dispatcher.utter_message(response = "utter_ask_pop_cap", country = f"{country}")
return
elif not country:
dispatcher.utter_message(response = "utter_ask_country")
return
countries_cap = {
"USA":"Washington, D.C.",
"Greece": "Athens",
"Sweden": "Stockholm",
"Australia": "Canberra",
"Finland": "Helsinki",
"Japan": "Tokyo",
"Russia": "Moscow",
"India": "New Delhi"}
countries_pop = {
"USA": "330",
"Greece": "10.7",
"Sweden": "10.35",
"Australia": "25.7",
"Finland": "5.5",
"Japan": "126",
"Russia": "144",
"India": "1380"}
class FutureActionAnswer(Action):
def name(self) -> Text:
return "future_action_answer"
def run(self, dispatcher: CollectingDispatcher, tracker: Tracker,
domain: Dict[Text, Any]) -> List[Dict[Text, Any]]:
country = tracker.get_slot("country")
pop_cap = tracker.get_slot("pop_cap")
payload_cap = {}
# the action when the country is selected and pop_cap=capital
print("action_answer")
if pop_cap=="Capital":
try:
get_capital = requests.get(f"{base_url}Capital",
timeout=timeout, params=payload_cap)
# check if the status_code is ok, i.e less than 400
if not get_capital.ok:
raise Exception
cap = get_capital.json()["body"]["capital"]
dispatcher.utter_message(response = "utter_answer_cap",
country = country, cap = cap)
except:
dispatcher.utter_message(response = "utter_server_failure")
# the action when the country is selected and pop_cap=population
elif pop_cap=="Population":
try:
get_population = requests.get(f"{base_url}Population",
timeout=timeout, params=payload_pop)
# check if the status_code is ok, i.e less than 400
if not get_population.ok:
raise Exception
pop = get_population.json()["body"]["population"]
dispatcher.utter_message(response = "utter_answer_pop",
country = country, pop = pop)
except:
dispatcher.utter_message(response = "utter_server_failure")
return
endpoint = "https://qcooc59re3.execute-api.us-east-1.amazonaws.com/dev/get"
timeout = 55
auth = BotoAWSRequestsAuth(
aws_host="qcooc59re3.execute-api.us-east-1.amazonaws.com",
aws_region="us-east-1",
aws_service="execute-api")
import requests
import json
endpoint = "https://qcooc59re3.execute-api.us-east-1.amazonaws.com/dev/get"
timeout = 55
country = "Finland"
payload = {"country": country}
res_cap = requests.post(f"{endpoint}Capital", json=payload, timeout=timeout)
res_cap.json()