cc-reviewer 1.8.3 → 1.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/adapters/codex.js +1 -1
- package/package.json +1 -1
package/dist/adapters/codex.js
CHANGED
|
@@ -320,13 +320,13 @@ export class CodexAdapter {
|
|
|
320
320
|
schemaFile = null;
|
|
321
321
|
}
|
|
322
322
|
const args = [
|
|
323
|
+
'--search',
|
|
323
324
|
'exec',
|
|
324
325
|
'-m', 'gpt-5.3-codex',
|
|
325
326
|
'-c', `model_reasoning_effort=${reasoningEffort}`,
|
|
326
327
|
'-c', 'model_reasoning_summary_format=experimental',
|
|
327
328
|
'--dangerously-bypass-approvals-and-sandbox',
|
|
328
329
|
'--skip-git-repo-check',
|
|
329
|
-
'--search',
|
|
330
330
|
'-C', workingDir,
|
|
331
331
|
];
|
|
332
332
|
// Add schema enforcement if available
|