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...
fa5eae9
junction
/
app.py
debisoft
fast
fa5eae9
almost 2 years ago
raw
Copy download link
history
blame
Safe
186 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()