Remove likable
Browse files- scripts/gradio_ui.py +1 -1
scripts/gradio_ui.py
CHANGED
|
@@ -32,7 +32,7 @@ class GradioBotUI:
|
|
| 32 |
history = self.bot.get_history_copy()
|
| 33 |
greetings = self.greeting(history)
|
| 34 |
with gr.Row():
|
| 35 |
-
chatbot = gr.Chatbot(bubble_full_width=False,
|
| 36 |
avatar_images=(self.user_avatar, self.agent_avatar), scale=1,
|
| 37 |
value=[[None, greetings]], show_copy_all_button=True)
|
| 38 |
|
|
|
|
| 32 |
history = self.bot.get_history_copy()
|
| 33 |
greetings = self.greeting(history)
|
| 34 |
with gr.Row():
|
| 35 |
+
chatbot = gr.Chatbot(bubble_full_width=False, show_copy_button=True,
|
| 36 |
avatar_images=(self.user_avatar, self.agent_avatar), scale=1,
|
| 37 |
value=[[None, greetings]], show_copy_all_button=True)
|
| 38 |
|