fix: 修复日志音频上报

This commit is contained in:
Sakura-RanChen
2026-03-18 16:40:32 +08:00
parent 0d2cb7b3c9
commit 1a5dd2d9d9
2 changed files with 14 additions and 3 deletions
+13 -2
View File
@@ -1074,11 +1074,22 @@ class ConnectionHandler:
# 如需要大模型先处理一轮,添加相关处理后的日志情况
content_parts = []
tool_speak_opus_data = None
if len(response_message) > 0:
text_buff = "".join(response_message)
content_parts.append({"type": "text", "text": text_buff})
self.tts_MessageText = text_buff
self.dialogue.put(Message(role="assistant", content=text_buff))
# 与主流程独立开来合成相关音频
try:
future = self.executor.submit(self.tts.to_tts, text_buff)
audio_datas = future.result()
if audio_datas:
tool_speak_opus_data = audio_datas
for audio_data in audio_datas:
self.tts.tts_audio_queue.put((SentenceType.MIDDLE, audio_data, text_buff))
except Exception as e:
self.logger.bind(tag=TAG).warning(f"工具调用前文本音频合成失败: {e}")
response_message.clear()
tool_call_data = tool_calls_list[0] # 只取第一个工具
@@ -1093,10 +1104,10 @@ class ConnectionHandler:
tool_text = f"{tool_call_data['name']}({json.dumps(tool_input, ensure_ascii=False)})"
content_parts.append({"type": "tool", "text": tool_text})
# 上报包含文本和工具调用的内容(使用chatType=3表示工具调用)
# 上报包含文本、音频和工具调用的内容(使用chatType=3表示工具调用)
tool_call_timestamp = int(time.time())
report_content = json.dumps(content_parts, ensure_ascii=False)
self.report_queue.put((3, report_content, None, tool_call_timestamp))
self.report_queue.put((3, report_content, tool_speak_opus_data, tool_call_timestamp))
self.logger.bind(tag=TAG).debug(
f"function_name={tool_call_data['name']}, function_id={tool_call_data['id']}, function_arguments={tool_call_data['arguments']}"
@@ -26,7 +26,7 @@ async def report(conn: "ConnectionHandler", type, text, opus_data, report_time):
Args:
conn: 连接对象
type: 上报类型,1为用户,2为智能体
type: 上报类型,1为用户,2为智能体3为工具调用
text: 合成文本
opus_data: opus音频数据
report_time: 上报时间