Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
cloudwp
/
DivineShroomMyceliumNetwork
like
1
Runtime error
App
Files
Files
Community
d8f94bc
DivineShroomMyceliumNetwork
/
frontend.py
cdvst
Initial commit for Hugging Face Space
374b8bc
about 2 months ago
raw
Copy download link
history
blame
Safe
139 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello
{name}
!"
gui = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
gui.launch()