Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Plurigrid
/
elucidate
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
188a677
elucidate
/
app.py
Barton Rhodes
gm
188a677
almost 3 years ago
raw
Copy download link
history
blame
Safe
133 Bytes
import
gradio
as
gr
def
greet
():
return
"gm gm ☀️"
iface = gr.Interface(fn=greet, inputs=[], outputs=
"text"
)
iface.launch()