diff options
| author | Sandy Tao <[email protected]> | 2025-08-07 09:18:53 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-07 16:18:53 +0000 |
| commit | 0d65baf9283138da56cdf08b00058ab3cf8cbaf9 (patch) | |
| tree | b40e6d30562c780884ba4e805294fc0b8f028e95 /packages/core/src/utils/nextSpeakerChecker.test.ts | |
| parent | 8d848dca4a52d169b3dfea2f66e7e5f69ee5e45c (diff) | |
Fix(core): Use Flash for next speaker check (#5786)
Diffstat (limited to 'packages/core/src/utils/nextSpeakerChecker.test.ts')
| -rw-r--r-- | packages/core/src/utils/nextSpeakerChecker.test.ts | 4 |
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 70d6023f..9141105f 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_LITE_MODEL } from '../config/models.js'; +import { DEFAULT_GEMINI_FLASH_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_LITE_MODEL); + expect(generateJsonCall[3]).toBe(DEFAULT_GEMINI_FLASH_MODEL); }); }); |
