Spaces:
Runtime error
Runtime error
[email protected]
commited on
Commit
·
02d9c2a
1
Parent(s):
7647d44
update
Browse files
src/display/formatting.py
CHANGED
|
@@ -4,9 +4,9 @@ def model_hyperlink(link, model_name):
|
|
| 4 |
|
| 5 |
def make_clickable_model(model_name):
|
| 6 |
proprietary_models = {
|
| 7 |
-
'o3-mini': 'https://openai.com/index/openai-o3-mini/',
|
| 8 |
-
'o1': 'https://openai.com/o1/',
|
| 9 |
-
'o1-preview': 'https://openai.com/index/introducing-openai-o1-preview/'
|
| 10 |
}
|
| 11 |
if model_name in proprietary_models:
|
| 12 |
return model_hyperlink(proprietary_models[model_name], model_name)
|
|
|
|
| 4 |
|
| 5 |
def make_clickable_model(model_name):
|
| 6 |
proprietary_models = {
|
| 7 |
+
'openai/o3-mini': 'https://openai.com/index/openai-o3-mini/',
|
| 8 |
+
'openai/o1': 'https://openai.com/o1/',
|
| 9 |
+
'openai/o1-preview': 'https://openai.com/index/introducing-openai-o1-preview/'
|
| 10 |
}
|
| 11 |
if model_name in proprietary_models:
|
| 12 |
return model_hyperlink(proprietary_models[model_name], model_name)
|