Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
inigogab
/
minima
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
inigogab
commited on
Nov 21, 2022
Commit
1d4099a
·
1 Parent(s):
e7d3f8d
Add hello app entry
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
import gradio as gr
2
+
3
+
def greet(name):
4
+
return f"Hello {name}!"
5
+
gr.Interface(fn=greet, inputs="text", outputs="text").launch()