Spaces:
Sleeping
Sleeping
Commit
·
2dd4970
1
Parent(s):
1daa08f
remove: share button
Browse files
app.py
CHANGED
@@ -447,7 +447,14 @@ def create_chat_interface():
|
|
447 |
}
|
448 |
"""
|
449 |
with gr.Blocks(fill_height=True, fill_width=True, css=css) as demo:
|
450 |
-
chatbot = gr.Chatbot(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
451 |
msg = gr.Textbox(elem_id="chatbot_textbox", show_label=False)
|
452 |
transcript_processor_state = gr.State() # maintain state of imp things
|
453 |
call_id_state = gr.State()
|
|
|
447 |
}
|
448 |
"""
|
449 |
with gr.Blocks(fill_height=True, fill_width=True, css=css) as demo:
|
450 |
+
chatbot = gr.Chatbot(
|
451 |
+
elem_id="chatbot_box",
|
452 |
+
layout="bubble",
|
453 |
+
show_label=False,
|
454 |
+
show_share_button=False,
|
455 |
+
show_copy_all_button=False,
|
456 |
+
show_copy_button=False,
|
457 |
+
)
|
458 |
msg = gr.Textbox(elem_id="chatbot_textbox", show_label=False)
|
459 |
transcript_processor_state = gr.State() # maintain state of imp things
|
460 |
call_id_state = gr.State()
|