File size: 159 Bytes
f14d43d |
1 2 3 4 5 6 |
import gradio as gr
with gr.Blocks() as demo:
gr.HighlightedText(value=[("Text","Label 1"),("to be","Label 2"),("highlighted","Label 3")])
demo.launch() |
f14d43d |
1 2 3 4 5 6 |
import gradio as gr
with gr.Blocks() as demo:
gr.HighlightedText(value=[("Text","Label 1"),("to be","Label 2"),("highlighted","Label 3")])
demo.launch() |