Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ain3007-project
/
ASAP-exporter
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
3b307ab
ASAP-exporter
/
app.py
osbm
update
3b307ab
over 1 year ago
raw
Copy download link
history
blame
Safe
259 Bytes
import
gradio
as
gr
import
openslide
def
process
(
text
):
return
text[::-
1
]
demo = gr.Interface(
fn=process,
inputs=
"text"
,
outputs=
"text"
,
title=
"Reverse Text"
,
description=
"Reverses the text entered by the user"
,
)
demo.launch()