chore: tune challenge matrix and debug prompts
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user