test / app.py
mimbres's picture
Update app.py
0efb599
raw
history blame
189 Bytes
import gradio as gr
def process_text(text):
return text
demo = gr.Interface(
process_text,
gr.Textbox(placeholder="Enter sentence here..."),
["highlight"]
)
demo.launch()