From 32922c6819464463b2bfb8015ea8b550ac5f5923 Mon Sep 17 00:00:00 2001 From: hailin Date: Sun, 1 Mar 2026 22:09:32 -0800 Subject: [PATCH] fix: adjust TTS default instructions for faster speech tempo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed from "语速适中" to "语速稍快,简洁干练" to reduce perceived latency in voice conversations. Co-Authored-By: Claude Opus 4.6 --- packages/services/voice-agent/src/agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/services/voice-agent/src/agent.py b/packages/services/voice-agent/src/agent.py index b0b98a1..cd63239 100644 --- a/packages/services/voice-agent/src/agent.py +++ b/packages/services/voice-agent/src/agent.py @@ -227,7 +227,7 @@ async def entrypoint(ctx: JobContext) -> None: _http_client_tts = _httpx.AsyncClient(verify=False) _oai_client_tts = _openai.AsyncOpenAI(http_client=_http_client_tts) - default_instructions = "用自然、友好的中文语气说话,语速适中,像真人助手一样。" + default_instructions = "用自然、友好的中文语气说话,语速稍快,简洁干练,像专业助手一样。" tts = openai_plugin.TTS( model=settings.openai_tts_model, voice=tts_voice,