cc-reviewer 1.8.0 → 1.8.1
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/gemini.js +1 -0
- package/dist/cli/gemini.js +1 -0
- package/package.json +1 -1
package/dist/adapters/gemini.js
CHANGED
|
@@ -305,6 +305,7 @@ export class GeminiAdapter {
|
|
|
305
305
|
// backticks, JSON templates, etc.
|
|
306
306
|
const args = [
|
|
307
307
|
'--yolo',
|
|
308
|
+
'--model', 'gemini-3.1-pro-preview',
|
|
308
309
|
'--output-format', 'json', // Force JSON output
|
|
309
310
|
'--include-directories', workingDir,
|
|
310
311
|
'-p', '', // Force headless mode; actual prompt delivered via stdin
|
package/dist/cli/gemini.js
CHANGED
|
@@ -177,6 +177,7 @@ function runGeminiCli(prompt, workingDir) {
|
|
|
177
177
|
// Use positional prompt (not deprecated -p flag) and --yolo for auto-approval
|
|
178
178
|
const args = [
|
|
179
179
|
'--yolo',
|
|
180
|
+
'--model', 'gemini-3.1-pro-preview',
|
|
180
181
|
'--include-directories', workingDir,
|
|
181
182
|
prompt
|
|
182
183
|
];
|