Update src/display/formatting.py
Browse files
src/display/formatting.py
CHANGED
|
@@ -2,7 +2,7 @@ def model_hyperlink(link, model_name):
|
|
| 2 |
link_class = ""
|
| 3 |
if model_name == "openai/gpt-4.1":
|
| 4 |
link_class = "judge_model"
|
| 5 |
-
return f'<a target="_blank" href="{link}" {link_class} style="color: var(--link-text-color); text-decoration: underline;text-decoration-style: dotted;">{model_name}</a>'
|
| 6 |
|
| 7 |
|
| 8 |
def make_clickable_model(model_name):
|
|
|
|
| 2 |
link_class = ""
|
| 3 |
if model_name == "openai/gpt-4.1":
|
| 4 |
link_class = "judge_model"
|
| 5 |
+
return f'<a target="_blank" href="{link}" class="{link_class}" style="color: var(--link-text-color); text-decoration: underline;text-decoration-style: dotted;">{model_name}</a>'
|
| 6 |
|
| 7 |
|
| 8 |
def make_clickable_model(model_name):
|