mikaelbhai commited on
Commit
9129702
1 Parent(s): c22b716

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -20,5 +20,6 @@ def chatbot(input, history=[]):
20
  return history, history
21
 
22
 
23
- iface = gr.Interface(fn=GPTBhai, inputs = ["text",'state'], outputs = ["chatbot",'state'], title = "bhAI")
24
- iface.launch(debug = True)
 
 
20
  return history, history
21
 
22
 
23
+ gr.Interface(fn = chatbot,
24
+ inputs = ["text",'state'],
25
+ outputs = ["chatbot",'state']).launch(debug = True)