Antoine245 commited on
Commit
e9807fd
·
1 Parent(s): fc2f10b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -22,12 +22,12 @@ examples = [
22
  ]
23
  ]
24
 
25
- user_input = ['']
26
- chat_history = ['']
27
 
28
 
29
  with gr.Blocks() as demo:
30
- chatbot = gr.Chatbot(gr.Textbox())
31
  msg = gr.Textbox()
32
  clear = gr.ClearButton([msg, chatbot])
33
 
 
22
  ]
23
  ]
24
 
25
+ # user_input = ['']
26
+ # chat_history = ['']
27
 
28
 
29
  with gr.Blocks() as demo:
30
+ chatbot = gr.Chatbot()
31
  msg = gr.Textbox()
32
  clear = gr.ClearButton([msg, chatbot])
33