""" HTML helper fragments used by views and Gradio callbacks. """ def prompt_html(text: str) -> str: return f'
{text}
' def badge_html(text: str) -> str: return f'{text}'