Medvira commited on
Commit
005e6cc
·
verified ·
1 Parent(s): 2ed2d19

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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=(r"C:\Users\A\Desktop\My_Projects\chatbot_builder\user.png",r"C:\Users\A\Desktop\My_Projects\chatbot_builder\ai.png"))
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