Skip to content

Commit 63fde0a

Browse files
chore: update default codex model to databricks-gpt-5-3-codex
Closes #102
1 parent c7d50ae commit 63fde0a

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ This template repo opens that vision up for every Databricks user — no IDE set
283283
| `DATABRICKS_TOKEN` | No | Optional. If not set, the app prompts for a token on first session. Auto-rotated every 10 minutes |
284284
| `HOME` | Yes | Set to `/app/python/source_code` in app.yaml |
285285
| `ANTHROPIC_MODEL` | No | Claude model name (default: `databricks-claude-opus-4-6`) |
286-
| `CODEX_MODEL` | No | Codex model name (default: `databricks-gpt-5-2`) |
286+
| `CODEX_MODEL` | No | Codex model name (default: `databricks-gpt-5-3-codex`) |
287287
| `GEMINI_MODEL` | No | Gemini model name (default: `databricks-gemini-3-1-pro`) |
288288
| `DATABRICKS_GATEWAY_HOST` | No | AI Gateway URL override. Auto-discovered from `DATABRICKS_WORKSPACE_ID` if unset |
289289

app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ env:
99
- name: GEMINI_MODEL
1010
value: databricks-gemini-3-1-pro
1111
- name: CODEX_MODEL
12-
value: databricks-gpt-5-2
12+
value: databricks-gpt-5-3-codex
1313
- name: CLAUDE_CODE_DISABLE_AUTO_MEMORY
1414
value: 0

docs/deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ databricks apps deploy <your-app-name> \
6868
| `DATABRICKS_TOKEN` | No | Optional. If not set, the app prompts for a token on first session. Auto-rotated every 10 minutes |
6969
| `HOME` | Yes | Set to `/app/python/source_code` in app.yaml |
7070
| `ANTHROPIC_MODEL` | No | Claude model name (default: `databricks-claude-opus-4-6`) |
71-
| `CODEX_MODEL` | No | Codex model name (default: `databricks-gpt-5-2`) |
71+
| `CODEX_MODEL` | No | Codex model name (default: `databricks-gpt-5-3-codex`) |
7272
| `GEMINI_MODEL` | No | Gemini model name (default: `databricks-gemini-3-1-pro`) |
7373
| `DATABRICKS_GATEWAY_HOST` | No | AI Gateway URL override. Auto-discovered from `DATABRICKS_WORKSPACE_ID` if unset. Falls back to direct model serving if neither is available |
7474

setup_codex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
host = os.environ.get("DATABRICKS_HOST", "")
2424
token = os.environ.get("DATABRICKS_TOKEN", "")
25-
codex_model = os.environ.get("CODEX_MODEL", "databricks-gpt-5-2")
25+
codex_model = os.environ.get("CODEX_MODEL", "databricks-gpt-5-3-codex")
2626

2727
# 1. Install Codex CLI into ~/.local/bin (always, even without token)
2828
local_bin = home / ".local" / "bin"

0 commit comments

Comments
 (0)