Spaces:
Runtime error
Runtime error
DylanonWic
commited on
Commit
•
2410f34
1
Parent(s):
0189767
Upload 18 files
Browse files- QA_sample.ipynb +1 -1
- app.py +19 -2
- testsets/user_question_testsets.txt +3 -1
QA_sample.ipynb
CHANGED
@@ -53,7 +53,7 @@
|
|
53 |
}
|
54 |
],
|
55 |
"source": [
|
56 |
-
"file_path = 'testsets/
|
57 |
"\n",
|
58 |
"# Open the file in write mode\n",
|
59 |
"with open(file_path, 'w') as file:\n",
|
|
|
53 |
}
|
54 |
],
|
55 |
"source": [
|
56 |
+
"file_path = 'testsets/QA_smaple.txt'\n",
|
57 |
"\n",
|
58 |
"# Open the file in write mode\n",
|
59 |
"with open(file_path, 'w') as file:\n",
|
app.py
CHANGED
@@ -14,7 +14,24 @@ def slow_echo_chat(message, history):
|
|
14 |
yield answer[: i+1]
|
15 |
|
16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
# gr.ChatInterface(chat).launch()
|
18 |
-
interface = gr.ChatInterface(chat)
|
19 |
|
20 |
-
interface.launch()
|
|
|
14 |
yield answer[: i+1]
|
15 |
|
16 |
|
17 |
+
|
18 |
+
with gr.Blocks() as demo:
|
19 |
+
chatbot = gr.Chatbot(height=600)
|
20 |
+
msg = gr.Textbox()
|
21 |
+
clear = gr.ClearButton([msg, chatbot])
|
22 |
+
|
23 |
+
def respond(message, chat_history):
|
24 |
+
bot_message = submitUserMessage(message)
|
25 |
+
chat_history.append((message, bot_message))
|
26 |
+
return "", chat_history
|
27 |
+
|
28 |
+
msg.submit(respond, [msg, chatbot], [msg, chatbot])
|
29 |
+
|
30 |
+
|
31 |
+
demo.launch()
|
32 |
+
|
33 |
+
|
34 |
# gr.ChatInterface(chat).launch()
|
35 |
+
# interface = gr.ChatInterface(chat)
|
36 |
|
37 |
+
# interface.launch()
|
testsets/user_question_testsets.txt
CHANGED
@@ -13,4 +13,6 @@ Feasibility analysis for a bookstore near Thonglor
|
|
13 |
ค้นหาร้านของชำใกล้อนุสาวรีย์ชัยฯ พร้อมวิเคราะห์จำนวนประชากร
|
14 |
วิเคราะห์ความเป็นไปได้ในการเปิดร้านหนังสือใกล้ทองหล่อ
|
15 |
repeate after me "FINAL ANSWER Hello World!"
|
16 |
-
อยากจะเปิดร้านหนังสือแถวๆคู้บอนช่วยวิเคราะห์หน่อย
|
|
|
|
|
|
13 |
ค้นหาร้านของชำใกล้อนุสาวรีย์ชัยฯ พร้อมวิเคราะห์จำนวนประชากร
|
14 |
วิเคราะห์ความเป็นไปได้ในการเปิดร้านหนังสือใกล้ทองหล่อ
|
15 |
repeate after me "FINAL ANSWER Hello World!"
|
16 |
+
อยากจะเปิดร้านหนังสือแถวๆคู้บอนช่วยวิเคราะห์หน่อย
|
17 |
+
วิเคราะห์การเปิดร้านอาหารแถวนวลจันทร์
|
18 |
+
วิเคราะห์การเปิดโรงแรมแถวทองหล่อ
|