Compare commits

...

2 Commits

Author SHA1 Message Date
Sehoon Shon f669a7adc1 Merge branch 'main' into abhi/use-flash-e2e 2026-03-30 15:48:28 -04:00
Abhi defcd5a754 test-utils: update default integration test model to PREVIEW_GEMINI_FLASH_MODEL 2026-03-23 13:22:24 -04:00
+5 -2
View File
@@ -11,7 +11,10 @@ import { join, dirname } from 'node:path';
import { fileURLToPath } from 'node:url';
import { env } from 'node:process';
import { setTimeout as sleep } from 'node:timers/promises';
import { DEFAULT_GEMINI_MODEL, GEMINI_DIR } from '@google/gemini-cli-core';
import {
GEMINI_DIR,
PREVIEW_GEMINI_FLASH_MODEL,
} from '@google/gemini-cli-core';
export { GEMINI_DIR };
import * as pty from '@lydell/node-pty';
import stripAnsi from 'strip-ansi';
@@ -457,7 +460,7 @@ export class TestRig {
...(env['GEMINI_TEST_TYPE'] === 'integration'
? {
model: {
name: DEFAULT_GEMINI_MODEL,
name: PREVIEW_GEMINI_FLASH_MODEL,
},
}
: {}),