Spaces:
Sleeping
Sleeping
Commit
·
44d5dcc
1
Parent(s):
30ea74d
fix: Remove show_copy_button (not in HF Gradio 6.0.1)
Browse files
app.py
CHANGED
|
@@ -330,7 +330,7 @@ with demo:
|
|
| 330 |
# Text Chat
|
| 331 |
with gr.Tab("💬 Text Chat"):
|
| 332 |
gr.Markdown("### Chat with Claude via text")
|
| 333 |
-
chatbot = gr.Chatbot(height=450
|
| 334 |
with gr.Row():
|
| 335 |
chat_input = gr.Textbox(label="Message", placeholder="Type your message...", scale=4)
|
| 336 |
chat_submit = gr.Button("Send", variant="primary", scale=1)
|
|
|
|
| 330 |
# Text Chat
|
| 331 |
with gr.Tab("💬 Text Chat"):
|
| 332 |
gr.Markdown("### Chat with Claude via text")
|
| 333 |
+
chatbot = gr.Chatbot(height=450)
|
| 334 |
with gr.Row():
|
| 335 |
chat_input = gr.Textbox(label="Message", placeholder="Type your message...", scale=4)
|
| 336 |
chat_submit = gr.Button("Send", variant="primary", scale=1)
|