Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
fffiloni/ProPainter
Sovenok-Hacker
/
ProPainter
like
1
Runtime error
App
Files
Files
Community
ca77f10
ProPainter
/
app.py
fffiloni
Create app.py
a79cc2a
about 1 year ago
raw
Copy download link
history
blame
Safe
132 Bytes
import
gradio
as
gr
def
infer
(
text
):
return
text
gr.Interface(fn=infer,inputs=[gr.Textbox()], outputs=[gr.Textbox()]).launch()