Hugging Face
Models
Datasets
Spaces
Posts
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...
main
tool-test
/
app.py
rrg92
Create app.py
2387773
verified
25 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
140 Bytes
import
gradio
as
gr
def
echo
(
name
):
return
"This is a test"
;
demo = gr.Interface(fn=echo, inputs=
"text"
, outputs=
"text"
)
demo.launch()