diff options
| author | Abhi <[email protected]> | 2025-07-27 17:40:55 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-27 21:40:55 +0000 |
| commit | 0b5cc9636243574c4212e969621ea65f03e7e88a (patch) | |
| tree | 1dd24e8de0fbc632d38dba3ae06cf6ccd171b9dc /packages/core/src/utils/nextSpeakerChecker.ts | |
| parent | b497791c59bc2e6ee14b0b9607adf4c3d6f09ffe (diff) | |
(model) - Use Flash Lite For Next Speaker Checks (#4991)
Diffstat (limited to 'packages/core/src/utils/nextSpeakerChecker.ts')
| -rw-r--r-- | packages/core/src/utils/nextSpeakerChecker.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/core/src/utils/nextSpeakerChecker.ts b/packages/core/src/utils/nextSpeakerChecker.ts index 9d428887..c75bf645 100644 --- a/packages/core/src/utils/nextSpeakerChecker.ts +++ b/packages/core/src/utils/nextSpeakerChecker.ts @@ -5,7 +5,7 @@ */ import { Content, SchemaUnion, Type } from '@google/genai'; -import { DEFAULT_GEMINI_FLASH_MODEL } from '../config/models.js'; +import { DEFAULT_GEMINI_FLASH_LITE_MODEL } from '../config/models.js'; import { GeminiClient } from '../core/client.js'; import { GeminiChat } from '../core/geminiChat.js'; import { isFunctionResponse } from './messageInspectors.js'; @@ -132,7 +132,7 @@ export async function checkNextSpeaker( contents, RESPONSE_SCHEMA, abortSignal, - DEFAULT_GEMINI_FLASH_MODEL, + DEFAULT_GEMINI_FLASH_LITE_MODEL, )) as unknown as NextSpeakerResponse; if ( |
