Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sukiboo
/
invisible-rag-demo
like
0
Sleeping
App
Files
Files
Community
cae8655
invisible-rag-demo
/
app.py
sukiboo
add placeholder app.py
cae8655
10 months ago
raw
Copy download link
history
blame
171 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
'Work in progress, come back later 😴️'
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()