From 89007ba7ccdbc8ac4f23f7a2fbdeec8f8aab03a6 Mon Sep 17 00:00:00 2001 From: Hoan HL Date: Sat, 17 Jan 2026 15:13:47 +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 b571f16..7b2cc12 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=0'), 'Gemini TTS uses use_live_api=1 (Live API)'); + t.ok(result.filePath.includes('use_live_api=1'), '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');