mikaelbhai commited on
Commit
c22b716
1 Parent(s): 595e216

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -19,7 +19,6 @@ def chatbot(input, history=[]):
19
  history.append((input, output))
20
  return history, history
21
 
22
- gr.Interface(fn = GPTBhai,
23
- inputs = ["text",'state'],
24
- outputs = ["chatbot",'state']
25
- title = ["bhAI]").launch(debug = True)
 
19
  history.append((input, output))
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)