ASAP-exporter / app.py
osbm's picture
update
3b307ab
raw
history blame
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()