Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
ccareaga
/
Intrinsic
like
7
Running
on
Zero
App
Files
Files
Community
1
3bc4426
Intrinsic
/
app.py
ccareaga
added empty app file
1ad0483
12 months ago
raw
Copy download link
history
blame
Safe
158 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()