[Wake/VAD/STT 与 Live runtime]:完成真实重复语音运行,包含云端ASR/TTS开关、run-live和临时上下文测试

This commit is contained in:
mkbk
2026-06-17 20:00:55 +08:00
parent ac97daa1e7
commit 4b7cd18a0f
20 changed files with 1043 additions and 68 deletions
+2 -2
View File
@@ -51,7 +51,7 @@ class OpenAICompatibleLlmProvider:
"stream": self.config.llm_stream,
}
yield from self._post_stream(
f"{self.config.llm_base_url}/v1/chat/completions",
self.config.api_url("/v1/chat/completions"),
payload,
parser=_parse_chat_completion_sse,
)
@@ -63,7 +63,7 @@ class OpenAICompatibleLlmProvider:
"stream": self.config.llm_stream,
}
yield from self._post_stream(
f"{self.config.llm_base_url}/v1/responses",
self.config.api_url("/v1/responses"),
payload,
parser=_parse_responses_sse,
)