File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6464CODEX_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
Original file line number Diff line number Diff 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 ):
Original file line number Diff line number Diff 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 ]:
You can’t perform that action at this time.
0 commit comments