Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
levjam
/
minimal
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
James Byers
commited on
Jun 30, 2023
Commit
2f33369
·
1 Parent(s):
3df4e1b
Add application file
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()