Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Jomaric
/
minima
like
0
License:
apache-2.0
Model card
Files
Files and versions
xet
Community
main
minima
/
app.py
Jomaric
add application file
a232fc8
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
137 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f'Hello'
+ {name}!
"
gr.Interface(fn=greet, inputs='text', outputs='text').launch()