8
8
from app import app
9
9
from app .agents .models import Bot
10
10
from app .commons import build_response
11
- from app .commons .logger import logger
12
11
from app .endpoint .utils import SilentUndefined
13
12
from app .endpoint .utils import call_api
14
13
from app .endpoint .utils import get_synonyms
@@ -57,8 +56,7 @@ def api():
57
56
58
57
if request_json :
59
58
60
- context = {}
61
- context ["context" ] = request_json ["context" ]
59
+ context = {"context" : request_json ["context" ]}
62
60
63
61
if app .config ["DEFAULT_WELCOME_INTENT_NAME" ] in request_json .get (
64
62
"input" ):
@@ -73,10 +71,10 @@ def api():
73
71
undefined = SilentUndefined )
74
72
result_json ["speechResponse" ] = split_sentence (template .render (** context ))
75
73
76
- logger .info (request_json .get ("input" ), extra = result_json )
74
+ app . logger .info (request_json .get ("input" ), extra = result_json )
77
75
return build_response .build_json (result_json )
78
76
79
- intent_id , confidence , suggetions = predict (request_json .get ("input" ))
77
+ intent_id , confidence , suggestions = predict (request_json .get ("input" ))
80
78
app .logger .info ("intent_id => %s" % intent_id )
81
79
intent = Intent .objects .get (intentId = intent_id )
82
80
@@ -145,9 +143,8 @@ def api():
145
143
146
144
if len (result_json ["missingParameters" ]) == 0 :
147
145
result_json ["complete" ] = True
148
- context = {}
149
- context ["parameters" ] = result_json ["extractedParameters" ]
150
- context ["context" ] = request_json ["context" ]
146
+ context = {"parameters" : result_json ["extractedParameters" ],
147
+ "context" : request_json ["context" ]}
151
148
else :
152
149
missing_parameter = result_json ["missingParameters" ][0 ]
153
150
result_json ["complete" ] = False
@@ -194,7 +191,7 @@ def api():
194
191
template = Template (intent .speechResponse ,
195
192
undefined = SilentUndefined )
196
193
result_json ["speechResponse" ] = split_sentence (template .render (** context ))
197
- logger .info (request_json .get ("input" ), extra = result_json )
194
+ app . logger .info (request_json .get ("input" ), extra = result_json )
198
195
return build_response .build_json (result_json )
199
196
else :
200
197
return abort (400 )
@@ -211,15 +208,20 @@ def update_model(app, message, **extra):
211
208
"""
212
209
global sentence_classifier
213
210
214
- sentence_classifier = EmbeddingIntentClassifier .load (app .config ["MODELS_DIR" ])
211
+ sentence_classifier = EmbeddingIntentClassifier .load (
212
+ app .config ["MODELS_DIR" ], app .config ["USE_WORD_VECTORS" ])
213
+
215
214
synonyms = get_synonyms ()
215
+
216
216
global entity_extraction
217
+
217
218
entity_extraction = EntityExtractor (synonyms )
219
+
218
220
app .logger .info ("Intent Model updated" )
219
221
220
222
221
223
with app .app_context ():
222
- update_model (app , "Modles updated" )
224
+ update_model (app , "Models updated" )
223
225
224
226
model_updated_signal .connect (update_model , app )
225
227
0 commit comments