ThongCoding commited on
Commit
a96208c
·
verified ·
1 Parent(s): f145afe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -25,7 +25,7 @@ def respond(
25
 
26
  # Dịch câu hỏi của người dùng từ tiếng Việt sang tiếng Anh
27
  message_blob = TextBlob(message)
28
- message_en = str(message.translate(to='en'))
29
 
30
  # Thêm các tin nhắn lịch sử vào messages
31
  for val in history:
 
25
 
26
  # Dịch câu hỏi của người dùng từ tiếng Việt sang tiếng Anh
27
  message_blob = TextBlob(message)
28
+ message_en = str(message_blob.translate(to='en'))
29
 
30
  # Thêm các tin nhắn lịch sử vào messages
31
  for val in history: