lkm2835 commited on
Commit
e3612e6
1 Parent(s): 8dcf728

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -90,7 +90,14 @@ def generate(
90
  yield "".join(outputs)
91
 
92
 
93
- chatbot = gr.Chatbot(layout="bubble", bubble_full_width=False)
 
 
 
 
 
 
 
94
 
95
  chat_interface = gr.ChatInterface(
96
  fn=generate,
 
90
  yield "".join(outputs)
91
 
92
 
93
+ BOT_AVATAR = "EXAONE_logo.png"
94
+
95
+ chatbot = gr.Chatbot(
96
+ label="EXAONE-3.0-7.8B-Instruct",
97
+ avatar_images=[None, BOT_AVATAR],
98
+ layout="bubble",
99
+ bubble_full_width=False
100
+ )
101
 
102
  chat_interface = gr.ChatInterface(
103
  fn=generate,