-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
292 lines (255 loc) · 11.1 KB
/
app.py
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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
import random
from backend.NLP.main.text_classifier import TextClassifier, classifier
from backend.api.weather import weather
from backend.api.google_search import search_google
from backend.api.wiki import search as search_wiki
from backend.api.wolframalpha import search_and_solve as search_wolfram
from flask import Flask
from flask import jsonify
from flask import request
from flask_cors import CORS
import pymongo
import json
import os
import time
from distutils.version import LooseVersion
import gensim
from dotenv import load_dotenv
load_dotenv()
os.environ["CUDA_VISIBLE_DEVICES"] = "-1"
root_dir = os.getcwd().replace('\\', '/')
data_path = root_dir + '/backend/NLP/data/processed_data4.csv'
if LooseVersion(gensim.__version__) >= LooseVersion("1.0.1"):
from gensim.models import KeyedVectors
word2vec_model = KeyedVectors.load_word2vec_format(
root_dir + '/backend/NLP/models/w2v.bin', binary=True)
else:
from gensim.models import Word2Vec
word2vec_model = Word2Vec.load(
root_dir + '/backend/NLP/models/w2v.bin', binary=True)
keras_text_classifier = TextClassifier(word2vec_dict=word2vec_model, model_path=root_dir + '/backend/NLP/models/sentiment_model7.weights.h5',
max_length=50, n_epochs=1000)
labels = keras_text_classifier.get_label(data_path)
print(labels)
app = Flask(__name__)
app.config['SECRET_KEY'] = 'We do it for the future !!!'
app.config['CORS_HEADERS'] = 'Content-Type'
CORS(app, resources={r"/api/v1/*": {"origins": "http://localhost:3000"}})
server = pymongo.MongoClient(os.getenv('MONGODB_URL'))
database = server.ChatApp
messageCollection = database.messages
start = 0
end = 0
api_key = "4e10bd9c2a268325e6ed167bd2ac57be"
base_url = "https://api.openweathermap.org/data/2.5/onecall?"
def seed_data():
if messageCollection.count_documents({}) > 0:
print("Collection is not null")
return
else:
content = """Tôi là Chatbot, hi vọng có thể giúp được bạn. Gõ 'Help' để biết thêm những gì mình có thể giúp được bạn hihi ^^."""
record = {
"isBot": True,
"content": content,
"time": time.time()
}
messageCollection.insert_one(record)
time.sleep(2)
print("Seeded successfully")
seed_data()
response = {
"hello": [
"Xin chào bạn.",
"Chào bạn, tôi có thể giúp gì cho bạn",
"Chào bạn, ngày mới tốt lành.",
"Xin chào.",
],
"goodbye": [
"Tạm biêt.",
"Hẹn gặp lại",
"Chào tạm biệt",
"Hẹn gặp lại bạn lần sau",
"Tạm biệt, hẹn gặp lại"
],
"thanks": [
"Hân hạnh",
"Luôn sẵn lòng :)",
"Cảm ơn bạn, giúp được bạn là vinh dự của tôi",
"Cảm ơn bạn, Rất vui khi được giúp đỡ bạn"
],
"introduction": [
"Tôi là chat bot có khả năng giúp bạn giải những vấn đề cơ bản trong cuộc sống",
"Tôi là chat bot, hi vọng có thể giúp bạn một ít",
"Là một chatbot tôi có thể giúp bạn trong vài lĩnh vực như toán, hóa, lịch sử ...",
"Tôi có thể giúp bạn vài bài tập đơn giản như cân bằng hóa học, giải phương trình, ...",
"Tôi là chatbot, rất hân hạnh làm quen với bạn"
],
"cant": [
"Xin lỗi, tôi chưa hiểu câu hỏi của bạn. Bạn có thể gõ 'Help' để biết thêm chi tiết.",
"Xin lỗi, tôi chưa hiểu câu hỏi của bạn. Bạn có thể gõ 'Help' để biết thêm chi tiết.",
"Xin lỗi, tôi chưa hiểu câu hỏi của bạn. Bạn có thể gõ 'Help' để biết thêm chi tiết.",
"Tôi nghĩ vấn đề này ngoài khả năng của tôi. Bạn có thể gõ 'Help' để biết thêm chi tiết.",
"Xin lỗi bạn, tôi chưa được học về vấn đề này. Bạn có thể gõ 'Help' để biết thêm chi tiết.",
"Tôi chưa thể giúp bạn ngay bây giờ, tôi sẽ cải thiện sau. Bạn có thể gõ 'Help' để biết thêm chi tiết.",
"Xin lỗi, tôi chưa hiểu câu hỏi của bạn. Bạn có thể gõ 'Help' để biết thêm chi tiết.",
"Xin lỗi, hiện tại tôi chưa thể giúp bạn. Bạn có thể gõ 'Help' để biết thêm chi tiết.",
"Xin lỗi, hiện tại tôi chưa thể giúp bạn. Bạn có thể gõ 'Help' để biết thêm chi tiết.",
"Vấn đề này khá mới với tôi, tôi có thể học sau, xin lỗi bạn. Bạn có thể gõ 'Help' để biết thêm chi tiết.",
],
"general_asking": [
"Đây là kết quả của tôi, bạn có thể tham khảo:\n",
"Tôi đã có kết quả:\n"
],
"calculator": [
"Đây là kết quả của tôi, bạn có thể tham khảo:\n",
"Đây là kết quả: \n",
"Kết quả nè:\n",
"Kết quả:\n"
],
"help": [
"Bạn có thể tra cứu các thông tin về lịch sử, địa lý, văn học, toán,... và lý thuyết về những lĩnh vực khác nhau. \nĐể tra cứu thời tiết bạn vui lòng viết hoa tỉnh thành phố và quận(không cần viết tên phường, xã). Ví dụ : thời tiết tại Quận 8, Hồ Chí Minh.\nĐối với các vấn đề khác, bạn chỉ cần nhập câu hỏi bạn muốn hỏi, mình sẽ trả lời cho bạn.\n"
],
"weather": [
"Đây là thông tin thời tiết tôi có được : \n",
"Thông tin thời tiết theo bạn yêu cầu : \n"
]
}
@app.route('/api/v1/messages', methods=['GET'])
def get_messages():
print("ok")
res = messageCollection.find({}, {'_id': False}).sort("time", 1)
return json.dumps({'results': list(res)})
@app.route('/api/v1/messages', methods=['POST'])
def save_message():
try:
# Create new users
try:
body = request.get_json()
except:
# Bad request as request body is not available
# Add message for debugging purpose
return "", 400
record_created = messageCollection.insert_one(body)
#
# Prepare the response
if isinstance(record_created, list):
# Return list of Id of the newly created item
return jsonify([str(v) for v in record_created]), 200
else:
# Return Id of the newly created item
return jsonify({"id": str(record_created),
"content": body["content"]
}), 200
except:
# Error while trying to create the resource
# Add message for debugging purpose
return "", 500
@app.route('/api/v1/messages/reply', methods=['POST'])
def reply_message():
# try:
# Create new users
try:
body = request.get_json()
# print("1")
except:
# Bad request as request body is not available
# Add message for debugging purpose
return "", 400
body = request.get_json()
content = body["content"]
classified_content = classifier(
keras_text_classifier, labels, content, is_general=True)
print('label : ', classified_content)
bot_reply = "Hi, I'm bot"
if classified_content == "hello":
bot_reply = random.choice(response["hello"])
elif classified_content == "help":
bot_reply = random.choice(response["help"])
elif classified_content == "goodbye":
bot_reply = random.choice(response["goodbye"])
elif classified_content == "thanks":
bot_reply = random.choice(response["thanks"])
elif classified_content == "introduction":
bot_reply = random.choice(response["introduction"])
elif classified_content == "ask_weather_loc":
bot_reply = weather(content, is_general=True)["result"]
if bot_reply == False:
bot_reply = random.choice(response["cant"])
else:
bot_reply = random.choice(response["weather"]) + bot_reply
elif classified_content == "ask_weather":
bot_reply = "Xin lỗi, hiện tại tôi chỉ hỗ trợ thông tin thời tiết hiện tại. Nếu muốn biết thông tin thời tiết hiện tại hãy cho tôi biết bạn đang ở quận nào của thành phố nào ?"
elif classified_content == "location":
bot_reply = weather(content, is_general=True)["result"]
if bot_reply == False:
bot_reply = random.choice(response["cant"])
else:
bot_reply = random.choice(response["weather"]) + bot_reply
elif classified_content == "general_asking":
bot_reply = solve_question_on_Wolfram(
content, is_general=True)["result"]
bot_reply1 = solve_question_on_Wiki(content, is_general=True)["result"]
if bot_reply == False:
bot_reply = random.choice(response["general_asking"]) + bot_reply1
else:
bot_reply = random.choice(response["general_asking"]) + bot_reply
elif classified_content == "math":
bot_reply = solve_question_on_Wolfram(
content, is_general=True)["result"]
if bot_reply == False:
bot_reply = random.choice(response["cant"])
else:
bot_reply = random.choice(response["calculator"]) + bot_reply
else:
bot_reply = solve_question_on_Wolfram(
content, is_general=True)["result"]
# bot_reply1 = solve_question_on_Google(content, is_general=True)["result"]
if bot_reply == False:
bot_reply = random.choice(response["cant"]),
else:
bot_reply = random.choice(response["calculator"]) + bot_reply
record_reply = messageCollection.insert_one({
"content": bot_reply,
"isBot": True,
"time": time.time()
})
#
# Prepare the response
if isinstance(record_reply, list):
# Return list of Id of the newly created item
return jsonify([str(v) for v in record_reply]), 200
else:
# Return Id of the newly created item
return jsonify(str(record_reply)), 200
# except:
# record_reply = messageCollection.insert({
# "content": random.choice(response["cant"]),
# "isBot": True,
# "time": time.time()
# })
# # Error while trying to create the resource
# # Add message for debugging purpose
# return "", 500
def solve_question_on_Wolfram(question, is_general=True):
res = search_wolfram(question, is_general=is_general)
return {
"result": res["result"]
}
def solve_question_on_Wiki(question, is_general=True):
res = search_wiki(question, is_general=is_general)
return {
"result": res["result"]
}
def solve_question_on_Google(question, is_general=True):
res = search_google(question, is_general=is_general)
return {
"result": res["result"]
}
@app.route('/api/v1/test', methods=['GET'])
def test():
res = search_wolfram("Cân bằng phản ứng: H2+O2=H2O", is_general=False)
return {
"result": res["result"]
}
if __name__ == '__main__':
app.run(debug=True)