Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
MLSB/pinder_inference_template
MLSB
/
DFMDock
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
dffaf30
DFMDock
/
app.py
Simon Dürr
init from docs
3d87e1b
8 months ago
raw
Copy download link
history
blame
Safe
138 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello
{name}
!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
).launch()