sudhir2016 commited on
Commit
202ddcb
·
1 Parent(s): ef6b863

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ g=open(test.txt)
3
+ def answer(query):
4
+ out=g
5
+ return out
6
+ demo = gr.Interface(fn=answer, inputs='text',outputs='text',examples=[['song celestial']])