Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sudhir2016
/
Gita_Qdrant
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
sudhir2016
commited on
Apr 6, 2023
Commit
202ddcb
·
1 Parent(s):
ef6b863
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -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']])