Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Moibe
/
sulku
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
bc14969
sulku
/
app.py
Moibe
venv and gitignore
bc14969
over 1 year ago
raw
Copy download link
history
blame
Safe
193 Bytes
import
gradio
as
gr
def
greet
(
name
):
#tokens = bafta()
return
"Tervetuloa "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()