Skip to content

Commit abf853f

Browse files
committed
add logs
1 parent 7871dd2 commit abf853f

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

src/ucode/agents/codex.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,6 @@
6464
CODEX_OPENAI_ID_INCOMPATIBLE_MODELS = {
6565
"databricks-gpt-5-2-codex",
6666
"databricks-gpt-5-4-nano",
67-
"databricks-gpt-5-6-luna",
68-
"databricks-gpt-5-6-sol",
69-
"databricks-gpt-5-6-terra",
7067
}
7168

7269

tests/test_agent_codex.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -339,9 +339,6 @@ def test_openai_model_id_maps_databricks_naming(self):
339339

340340
def test_codex_model_id_preserves_openai_incompatible_models(self):
341341
assert codex._codex_model_id("databricks-gpt-5-2-codex") == "databricks-gpt-5-2-codex"
342-
assert codex._codex_model_id("databricks-gpt-5-6-luna") == "databricks-gpt-5-6-luna"
343-
assert codex._codex_model_id("databricks-gpt-5-6-sol") == "databricks-gpt-5-6-sol"
344-
assert codex._codex_model_id("databricks-gpt-5-6-terra") == "databricks-gpt-5-6-terra"
345342
assert codex._codex_model_id("databricks-gpt-5-4-nano") == "databricks-gpt-5-4-nano"
346343

347344
def test_codex_model_id_passes_model_services_id_verbatim(self):

tests/test_e2e.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,11 @@ class TestCodexLaunch:
366366
CODEX_INCOMPATIBLE_MODEL_FRAGMENTS = (
367367
# nano endpoint is unreliably slow and times out past the 60s budget.
368368
"gpt-5-4-nano",
369+
# These endpoints are discoverable as responses-capable, but the
370+
# backing OpenAI endpoint returns ENDPOINT_NOT_FOUND in the CI region.
371+
"gpt-5-6-luna",
372+
"gpt-5-6-sol",
373+
"gpt-5-6-terra",
369374
)
370375

371376
def _codex_models(self, e2e_state: dict) -> list[str]:

0 commit comments

Comments
 (0)