From ca9538030f55aa74c73b14d99241daebbe397897 Mon Sep 17 00:00:00 2001 From: Hoan HL Date: Wed, 14 Jan 2026 17:37:38 +0700 Subject: [PATCH] wip --- test/synth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/synth.js b/test/synth.js index 7b2cc12..b571f16 100644 --- a/test/synth.js +++ b/test/synth.js @@ -347,7 +347,7 @@ test('Google TTS streaming tests (!JAMBONES_DISABLE_TTS_STREAMING)', async(t) => }); t.ok(result.filePath.startsWith('say:'), 'Gemini TTS returns streaming say: path'); t.ok(result.filePath.includes('vendor=google'), 'Gemini TTS streaming path contains vendor=google'); - t.ok(result.filePath.includes('use_live_api=1'), 'Gemini TTS uses use_live_api=1 (Live API)'); + t.ok(result.filePath.includes('use_live_api=0'), 'Gemini TTS uses use_live_api=1 (Live API)'); t.ok(result.filePath.includes(`model_name=${geminiModel}`), 'Gemini TTS streaming path contains model_name'); t.ok(result.filePath.includes('prompt=Speak naturally.'), 'Gemini TTS streaming path contains prompt');