Spaces:
Running
Running
File size: 601 Bytes
d1f4d58 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
TITLE = """<h1 align="center" id="space-title">AssistantBench</h1>"""
def format_error(msg):
return f"<p style='color: red; font-size: 20px; text-align: center;'>{msg}</p>"
def format_warning(msg):
return f"<p style='color: orange; font-size: 20px; text-align: center;'>{msg}</p>"
def format_log(msg):
return f"<p style='color: green; font-size: 20px; text-align: center;'>{msg}</p>"
def model_hyperlink(link, model_name):
return f'<a target="_blank" href="{link}" style="color: var(--link-text-color); text-decoration: underline;text-decoration-style: dotted;">{model_name}</a>'
|