Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rrg92
/
tool-test
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
rrg92
commited on
Apr 4
Commit
2387773
·
verified
·
1 Parent(s):
440c9b5
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import gradio as gr
2
+
3
+
def echo(name):
4
+
return "This is a test";
5
+
6
+
demo = gr.Interface(fn=echo, inputs="text", outputs="text")
7
+
demo.launch()