freddyaboulton's picture
Upload folder using huggingface_hub
4b2a32c verified
raw
history blame contribute delete
286 Bytes
import gradio as gr
with gr.Blocks() as demo:
gr.HighlightedText(
value=[("This is highlighted", "highlight"), ("This is not", None), ("This is also highlighted", "highlight")],
color_map={"highlight": "yellow"},
combine_adjacent=True,
)
demo.launch()