Skip to content

Commit df9f0a1

Browse files
Add trinity-large-thinking to resolve_model_config.py (#2760)
Co-authored-by: openhands <openhands@all-hands.dev>
1 parent 4c2bcb6 commit df9f0a1

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.github/run-eval/resolve_model_config.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,15 @@ def _sigterm_handler(signum: int, _frame: object) -> None:
282282
"temperature": 0.0,
283283
},
284284
},
285+
"trinity-large-thinking": {
286+
"id": "trinity-large-thinking",
287+
"display_name": "Trinity Large Thinking",
288+
"llm_config": {
289+
"model": "litellm_proxy/trinity-large-thinking",
290+
"temperature": 1.0,
291+
"top_p": 0.95,
292+
},
293+
},
285294
}
286295

287296

tests/github_workflows/test_resolve_model_config.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -580,3 +580,14 @@ def test_qwen3_6_plus_config():
580580
assert model["display_name"] == "Qwen3.6 Plus"
581581
assert model["llm_config"]["model"] == "litellm_proxy/dashscope/qwen3.6-plus"
582582
assert model["llm_config"]["temperature"] == 0.0
583+
584+
585+
def test_trinity_large_thinking_config():
586+
"""Test that trinity-large-thinking has correct configuration."""
587+
model = MODELS["trinity-large-thinking"]
588+
589+
assert model["id"] == "trinity-large-thinking"
590+
assert model["display_name"] == "Trinity Large Thinking"
591+
assert model["llm_config"]["model"] == "litellm_proxy/trinity-large-thinking"
592+
assert model["llm_config"]["temperature"] == 1.0
593+
assert model["llm_config"]["top_p"] == 0.95

0 commit comments

Comments
 (0)