Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
not-lain
/
abcdef
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
abcdef
/
app.py
not-lain
Update app.py
322cf95
verified
6 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
180 Bytes
import
gradio
as
gr
def
generate
(
text
):
return
text
demo = gr.Interface(fn=generate,
inputs=[
"text"
],
outputs=[
"text"
])
demo.launch()