Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/run-eval/resolve_model_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,10 @@
"display_name": "GPT-5.2 Codex",
"llm_config": {"model": "litellm_proxy/gpt-5.2-codex"},
},
"gpt-5-3-codex": {
"id": "gpt-5-3-codex",
"gpt-5.3-codex": {
"id": "gpt-5.3-codex",
"display_name": "GPT-5.3 Codex",
"llm_config": {"model": "litellm_proxy/gpt-5-3-codex"},
"llm_config": {"model": "litellm_proxy/gpt-5.3-codex"},
},
"gpt-5.2-high-reasoning": {
"id": "gpt-5.2-high-reasoning",
Expand Down
8 changes: 4 additions & 4 deletions tests/github_workflows/test_resolve_model_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,12 +250,12 @@ def test_gpt_oss_20b_config():


def test_gpt_5_3_codex_config():
"""Test that gpt-5-3-codex has correct configuration."""
model = MODELS["gpt-5-3-codex"]
"""Test that gpt-5.3-codex has correct configuration."""
model = MODELS["gpt-5.3-codex"]

assert model["id"] == "gpt-5-3-codex"
assert model["id"] == "gpt-5.3-codex"
assert model["display_name"] == "GPT-5.3 Codex"
assert model["llm_config"]["model"] == "litellm_proxy/gpt-5-3-codex"
assert model["llm_config"]["model"] == "litellm_proxy/gpt-5.3-codex"


def test_glm_5_config():
Expand Down
Loading