summaryrefslogtreecommitdiff
path: root/packages/core/src/utils/nextSpeakerChecker.test.ts
diff options
context:
space:
mode:
authorAbhi <[email protected]>2025-07-27 17:40:55 -0400
committerGitHub <[email protected]>2025-07-27 21:40:55 +0000
commit0b5cc9636243574c4212e969621ea65f03e7e88a (patch)
tree1dd24e8de0fbc632d38dba3ae06cf6ccd171b9dc /packages/core/src/utils/nextSpeakerChecker.test.ts
parentb497791c59bc2e6ee14b0b9607adf4c3d6f09ffe (diff)
(model) - Use Flash Lite For Next Speaker Checks (#4991)
Diffstat (limited to 'packages/core/src/utils/nextSpeakerChecker.test.ts')
-rw-r--r--packages/core/src/utils/nextSpeakerChecker.test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/core/src/utils/nextSpeakerChecker.test.ts b/packages/core/src/utils/nextSpeakerChecker.test.ts
index 9141105f..70d6023f 100644
--- a/packages/core/src/utils/nextSpeakerChecker.test.ts
+++ b/packages/core/src/utils/nextSpeakerChecker.test.ts
@@ -6,7 +6,7 @@
import { describe, it, expect, vi, beforeEach, Mock, afterEach } from 'vitest';
import { Content, GoogleGenAI, Models } 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 { Config } from '../config/config.js';
import { checkNextSpeaker, NextSpeakerResponse } from './nextSpeakerChecker.js';
@@ -248,6 +248,6 @@ describe('checkNextSpeaker', () => {
expect(mockGeminiClient.generateJson).toHaveBeenCalled();
const generateJsonCall = (mockGeminiClient.generateJson as Mock).mock
.calls[0];
- expect(generateJsonCall[3]).toBe(DEFAULT_GEMINI_FLASH_MODEL);
+ expect(generateJsonCall[3]).toBe(DEFAULT_GEMINI_FLASH_LITE_MODEL);
});
});