Update app.py
Browse files
app.py
CHANGED
@@ -178,7 +178,7 @@ with gr.Blocks(theme=gr.themes.Soft(), title=APP_TITLE, css="""
|
|
178 |
persist_history = gr.Checkbox(label="Persist History", value=True)
|
179 |
with gr.Row():
|
180 |
with gr.Column(scale=3):
|
181 |
-
chat = gr.Chatbot(label="Conversation", avatar_images=(None, None), bubble_full_width=False, height=420,
|
182 |
user_msg = gr.Textbox(placeholder="Type your message and press Enter...", show_label=False, lines=2)
|
183 |
with gr.Row():
|
184 |
submit_btn = gr.Button("Send", variant="primary")
|
|
|
178 |
persist_history = gr.Checkbox(label="Persist History", value=True)
|
179 |
with gr.Row():
|
180 |
with gr.Column(scale=3):
|
181 |
+
chat = gr.Chatbot(label="Conversation", avatar_images=(None, None), bubble_full_width=False, height=420, show_copy_button=True, render_markdown=True, show_share_button=False)
|
182 |
user_msg = gr.Textbox(placeholder="Type your message and press Enter...", show_label=False, lines=2)
|
183 |
with gr.Row():
|
184 |
submit_btn = gr.Button("Send", variant="primary")
|