Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
enzokro
/
dynamic_cfg
like
0
Runtime error
App
Files
Files
Community
5ca3a98
dynamic_cfg
/
app.py
enzokro
add app files
92e5033
almost 2 years ago
raw
Copy download link
history
blame
Safe
150 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()