Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
YongHuang
/
sigai
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
YongHuang
commited on
Feb 15, 2023
Commit
1ae8d9a
·
1 Parent(s):
38f1335
add gradio example
Browse files
Files changed (1)
hide
show
g.py
+8
-0
g.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import gradio as gr
2
+
3
+
def greet(name):
4
+
return "Hello " + name + "!"
5
+
6
+
gr.Interface(greet, "text", "text").launch(share=True)
7
+
8
+