Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Docty
/
skypper
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
skypper
/
app.py
Docty
Update app.py
015b4fa
verified
2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
150 Bytes
import
gradio
as
gr
def
predict
(
text
):
return
text
demo = gr.Interface(
fn=predict,
inputs=
'textbox'
,
outputs=
'text'
,
)
demo.launch()