Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
bulu
/
minima
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
bulu
commited on
Sep 18, 2022
Commit
3e567d3
·
1 Parent(s):
f4311a2
add app
Browse files
Files changed (1)
hide
show
app.py
+3
-0
app.py
ADDED
Viewed
@@ -0,0 +1,3 @@
1
+
import gradio as gr
2
+
def greet(name): return f"Hello {name}!"
3
+
gr.Interface(fn=greet, inputs="text", outputs="text").launch()