Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
jph00
/
minimal
like
4
Running
App
Files
Files
Community
jph00
commited on
May 1, 2022
Commit
a61f902
•
1 Parent(s):
dc2d8b0
app.py
Browse files
Files changed (1)
hide
show
app.py
+4
-0
app.py
ADDED
Viewed
@@ -0,0 +1,4 @@
1
+
import gradio as gr
2
+
def greet(): return "Hello"
3
+
gr.Interface(fn=greet, inputs=[], outputs="text").launch()
4
+