Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
not-lain
/
test
like
1
Sleeping
App
Files
Files
Community
14
Fetching metadata from the HF Docker repository...
main
test
/
app.py
not-lain
Update app.py
55d82ce
verified
26 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
130 Bytes
import
gradio
as
gr
def
talk
(
text
):
return
None
demo = gr.Interface(fn=talk, inputs=
"text"
, outputs=
"text"
)
demo.launch()