You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On ug codex --provider <model-provider-service>, ug now calls GET /ai-gateway/codex/v1/models at launch to fetch the MPS model catalog and raises fatally if it fails. On workspaces where that route isn't enabled, Codex never starts — even though the user passed --model. This worked on an earlier build, so it's a regression.
Environment
Broken: ug 0.1.0+129.gda2f31d, codex 0.153.4, Databricks CLI 1.14.1, macOS
🚫 0.1.0+129.gda2f31d: same command fails at launch:
ERROR Could not discover Codex models for <mps>: HTTP 404 Not Found:
{"error_code":"ENDPOINT_NOT_FOUND","message":"codex/v1/models is not enabled for this workspace."}
Expected
When codex/v1/models is unavailable, ug should fall back to the user-supplied --model (prior behavior) with a warning, not abort the launch.
AIGTWY-4247 — /codex/v1/models currently lists only system.ai.* models, not MPS/external-provider deployments; relevant to whether discovery is even useful for MPS yet.
codex/v1/models is a per-workspace, off-by-default gateway route (enablement precedents: SUP-35474, SUP-36261).
On
ug codex --provider <model-provider-service>, ug now callsGET /ai-gateway/codex/v1/modelsat launch to fetch the MPS model catalog and raises fatally if it fails. On workspaces where that route isn't enabled, Codex never starts — even though the user passed--model. This worked on an earlier build, so it's a regression.Environment
Worked before → broken now
ug codex --provider <mps> --model gpt-5.6-sol -- "say pong"→ pongExpected
When codex/v1/models is unavailable, ug should fall back to the user-supplied --model (prior behavior) with a warning, not abort the launch.
Related