apahilaj commited on
Commit
ad41b76
·
1 Parent(s): 73708f7

the chat app

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -82,7 +82,8 @@ def greet(question, pdf_file):
82
  else:
83
  return "No helpful answer found."
84
 
85
- iface = gr.Interface(fn=greet, inputs=["text", "file"], outputs="text")
 
86
  iface.launch(share=True)
87
 
88
 
 
82
  else:
83
  return "No helpful answer found."
84
 
85
+ # iface = gr.Interface(fn=greet, inputs=["text", "file"], outputs="text")
86
+ iface = gr.ChatInterface(greet)
87
  iface.launch(share=True)
88
 
89