ehristoforu commited on
Commit
1e1dcb2
·
1 Parent(s): 0c8c715

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -69,7 +69,7 @@ examples=[
69
  "Write a 100-word article on 'Benefits of Open-Source in AI research'",
70
  ]
71
 
 
72
 
73
 
74
-
75
- gr.ChatInterface(gptresponse, title=title, description=description, examples=examples).launch(share=False, debug=False, show_error=False, show_api=False)
 
69
  "Write a 100-word article on 'Benefits of Open-Source in AI research'",
70
  ]
71
 
72
+ chatbot = gr.Chatbot(avatar_images=('user.png', 'bot.png'),bubble_full_width = False)
73
 
74
 
75
+ gr.ChatInterface(gptresponse, chatbot = chatbot, title=title, description=description, examples=examples).launch(share=False, debug=False, show_error=False, show_api=False)