Spaces:
Runtime error
Runtime error
Update src/display/formatting.py
Browse files
src/display/formatting.py
CHANGED
@@ -3,11 +3,9 @@
|
|
3 |
def model_hyperlink(link, model_name):
|
4 |
return f'<a target="_blank" href="{link}" style="color: var(--link-text-color); text-decoration: underline; text-decoration-style: dotted;">{model_name}</a>'
|
5 |
|
6 |
-
#
|
7 |
-
# ๊ฐ์ผ๋ก ๋จ์ ๋ฌธ์์ด์ธ ๊ฒฝ์ฐ์๋ ๋ด๋ถ Hugging Face URL๋ก ์์ฑํ๊ณ ,
|
8 |
-
# ๊ฐ์ผ๋ก (display_name, url) ํํ์ด ๋ค์ด์์ผ๋ฉด ํด๋น ์ธ๋ถ URL์ ์ฌ์ฉํฉ๋๋ค.
|
9 |
MODEL_MAPPING = {
|
10 |
-
"DeepSeek-
|
11 |
"OpenAI ChatGPT-4o": ("External Awesome Model", "https://chatgpt.com")
|
12 |
}
|
13 |
|
|
|
3 |
def model_hyperlink(link, model_name):
|
4 |
return f'<a target="_blank" href="{link}" style="color: var(--link-text-color); text-decoration: underline; text-decoration-style: dotted;">{model_name}</a>'
|
5 |
|
6 |
+
# ์ ์ญ์์ MODEL_MAPPING์ ๋จผ์ ์ ์ํฉ๋๋ค.
|
|
|
|
|
7 |
MODEL_MAPPING = {
|
8 |
+
"deepseek-ai/DeepSeek-R11": "deepseek-ai/DeepSeek-R1",
|
9 |
"OpenAI ChatGPT-4o": ("External Awesome Model", "https://chatgpt.com")
|
10 |
}
|
11 |
|