Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
debisoft
/
junction
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
01a243d
junction
/
app.py
debisoft
fast
01a243d
about 2 years ago
raw
Copy download link
history
blame
182 Bytes
import
gradio
as
gr
def
greet
(
name, str2
):
return
"Hello "
+ name +
"!!"
+
" str2="
+ str2
iface = gr.Interface(fn=greet, inputs=
"text, text"
, outputs=
"text"
)
iface.launch()