Skip to content

Commit 42d41e7

Browse files
committed
Upgrade to latest codex
1 parent 7c6c05b commit 42d41e7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

doc/neo_reviewer.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Call setup() with your options: >lua
9090
},
9191
ai = {
9292
enabled = false, -- Run AI analysis by default
93-
model = "gpt-5.2-codex", -- Model for Codex CLI (default)
93+
model = "gpt-5.3-codex", -- Model for Codex CLI (default)
9494
command = "codex", -- Command to invoke
9595
reasoning_effort = "medium", -- Reasoning effort hint (Codex CLI)
9696
walkthrough_window = {
@@ -122,7 +122,7 @@ ai ~
122122
Configure AI-powered review analysis. Requires an AI CLI (Codex CLI by
123123
default) to be installed and configured.
124124
- `enabled`: Run AI analysis by default (default: false).
125-
- `model`: Model to use for analysis (default: "gpt-5.2-codex").
125+
- `model`: Model to use for analysis (default: "gpt-5.3-codex").
126126
- `command`: Command to invoke the AI CLI (default: "codex").
127127
- `reasoning_effort`: Reasoning effort hint for Codex CLI
128128
(default: "medium", ignored by other CLIs).

lua/neo_reviewer/config.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ M.values = {
111111
},
112112
ai = {
113113
enabled = false,
114-
model = "gpt-5.2-codex",
114+
model = "gpt-5.3-codex",
115115
command = "codex",
116116
reasoning_effort = "medium",
117117
walkthrough_window = {

lua/tests/plenary/ai_spec.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ describe("neo_reviewer.config AI defaults", function()
273273
end)
274274

275275
it("has default model", function()
276-
assert.are.equal("gpt-5.2-codex", config.values.ai.model)
276+
assert.are.equal("gpt-5.3-codex", config.values.ai.model)
277277
end)
278278

279279
it("has default command", function()
@@ -317,7 +317,7 @@ describe("neo_reviewer.config build_ai_command", function()
317317
assert.are.equal("codex", spec.command)
318318
assert.is_nil(spec.writer)
319319
assert.are.same(
320-
{ "exec", "--model", "gpt-5.2-codex", "--config", 'model_reasoning_effort="medium"', "Explain this" },
320+
{ "exec", "--model", "gpt-5.3-codex", "--config", 'model_reasoning_effort="medium"', "Explain this" },
321321
spec.args
322322
)
323323
end)

0 commit comments

Comments
 (0)