chore: tune challenge matrix and debug prompts

This commit is contained in:
lda
2026-06-29 19:25:35 +07:00 Verified
parent 5f520d74bd
commit e0315f295c
10 changed files with 27 additions and 18 deletions
+6 -3
View File
@@ -4,9 +4,12 @@ from __future__ import annotations
def short_model_name(model: str) -> str:
"""Return compact model labels for dense trial tables and session titles."""
name = model.rsplit("/", 1)[-1]
for suffix in ("-v4-flash-free", "-v2.5-free", "-3-ultra-free"):
name = name.replace(suffix, "")
return name
return {
"deepseek-v4-flash-free": "deepseek",
"mimo-v2.5-free": "mimo",
"nemotron-3-ultra-free": "nemotron",
"north-mini-code-free": "north",
}.get(name, name)
def short_challenge_name(challenge: str) -> str: