Inan Ince
commited on
Commit
•
e55502b
1
Parent(s):
694b9a7
Add application file11
Browse files
app.py
CHANGED
@@ -39,5 +39,8 @@ with gr.Blocks(theme="compact") as demo:
|
|
39 |
return chat_history, ""
|
40 |
|
41 |
msg.submit(update_ui, [msg, chatbot], [chatbot, msg])
|
42 |
-
send_btn.click(update_ui, [msg, chatbot],
|
|
|
|
|
|
|
43 |
|
|
|
39 |
return chat_history, ""
|
40 |
|
41 |
msg.submit(update_ui, [msg, chatbot], [chatbot, msg])
|
42 |
+
send_btn.click(update_ui, [msg, chatbot], [chatbot, msg])
|
43 |
+
|
44 |
+
# Uygulamayı başlat
|
45 |
+
demo.launch()
|
46 |
|