chansung commited on
Commit
fdd59a6
·
verified ·
1 Parent(s): bfa89c4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -8
app.py CHANGED
@@ -208,14 +208,14 @@ def main(args):
208
  min_width="auto",
209
  )
210
 
211
- # with gr.Column("chat-window", elem_id="chat-window"):
212
- # gr.ChatInterface(
213
- # multimodal=True,
214
- # type="messages",
215
- # fn=echo,
216
- # additional_inputs=[state, persona],
217
- # additional_outputs=[state, summary_diff, summary_md, summary_num],
218
- # )
219
 
220
  return demo
221
 
 
208
  min_width="auto",
209
  )
210
 
211
+ with gr.Column("chat-window", elem_id="chat-window"):
212
+ gr.ChatInterface(
213
+ multimodal=True,
214
+ type="messages",
215
+ fn=echo,
216
+ additional_inputs=[state, persona],
217
+ additional_outputs=[state, summary_diff, summary_md, summary_num],
218
+ )
219
 
220
  return demo
221