Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
GH2005
/
CodingWk2
like
0
No application file
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
CodingWk2
/
app (1).py
GH2005
Update app (1).py
ed61db5
verified
18 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
193 Bytes
import
gradio
as
gr
def
echo
(
x
):
return
x
demo = gr.Interface(fn=echo, inputs=
"text"
, outputs=
"text"
)
if
__name__ ==
"__main__"
:
demo.launch(server_name=
"0.0.0.0"
, server_port=
7860
)