Update app.py
Browse files
app.py
CHANGED
|
@@ -3,7 +3,7 @@ import random
|
|
| 3 |
import time
|
| 4 |
|
| 5 |
with gr.Blocks() as demo:
|
| 6 |
-
chatbot = gr.Chatbot(type="messages")
|
| 7 |
msg = gr.Textbox()
|
| 8 |
clear = gr.ClearButton([msg, chatbot])
|
| 9 |
|
|
|
|
| 3 |
import time
|
| 4 |
|
| 5 |
with gr.Blocks() as demo:
|
| 6 |
+
chatbot = gr.Chatbot(type="messages", show_share_button=False)
|
| 7 |
msg = gr.Textbox()
|
| 8 |
clear = gr.ClearButton([msg, chatbot])
|
| 9 |
|