peterpull commited on
Commit
e24e266
·
1 Parent(s): b7111c4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -40,4 +40,10 @@ iface = gr.Interface(fn=chatbot,
40
  title="AI Chatbot trained on J. Haynes mediation material, v0.1",
41
  description="test")
42
 
43
- iface.launch(share=False)
 
 
 
 
 
 
 
40
  title="AI Chatbot trained on J. Haynes mediation material, v0.1",
41
  description="test")
42
 
43
+ iface = gr.Interface(fn=chat,
44
+ inputs=["Enter your question"],
45
+ outputs=["Chatbot reponse"],
46
+ title="AI Chatbot trained on J. Haynes mediation material, v0.1",
47
+ description="test")
48
+ iface.launch()
49
+