ameliakris commited on
Commit
44d5dcc
·
1 Parent(s): 30ea74d

fix: Remove show_copy_button (not in HF Gradio 6.0.1)

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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, show_copy_button=True)
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)