Update app.py
Browse files
app.py
CHANGED
@@ -143,7 +143,7 @@ with gr.Blocks() as demo:
|
|
143 |
with gr.Column(scale=1):
|
144 |
gr.Markdown("### Chatbot Playground")
|
145 |
chatbot = gr.Chatbot(label="Chatbot:", bubble_full_width=False,show_copy_button=True,min_width=400,
|
146 |
-
avatar_images=(
|
147 |
chat_input = gr.MultimodalTextbox(interactive=True,
|
148 |
placeholder="Enter message or upload file...", show_label=False)
|
149 |
|
|
|
143 |
with gr.Column(scale=1):
|
144 |
gr.Markdown("### Chatbot Playground")
|
145 |
chatbot = gr.Chatbot(label="Chatbot:", bubble_full_width=False,show_copy_button=True,min_width=400,
|
146 |
+
avatar_images=(os.path.join(os.getcwd(),'user.png'),os.path.join(os.getcwd(),'ai.png')))
|
147 |
chat_input = gr.MultimodalTextbox(interactive=True,
|
148 |
placeholder="Enter message or upload file...", show_label=False)
|
149 |
|