Files
xiaozhi-esp32-server/main/xiaozhi-server/core/connection.py
T

1659 lines
68 KiB
Python
Raw Normal View History

2025-02-02 23:01:14 +08:00
import os
2025-05-27 18:06:44 +08:00
import sys
2025-04-12 17:36:04 +08:00
import copy
2025-02-02 23:01:14 +08:00
import json
import re
2025-02-02 23:01:14 +08:00
import uuid
import time
import queue
import asyncio
import threading
2025-05-27 18:06:44 +08:00
import traceback
import subprocess
2025-02-02 23:01:14 +08:00
import websockets
2025-10-11 15:27:18 +08:00
2025-03-31 21:40:48 +08:00
from core.utils.util import (
extract_json_from_string,
2025-05-07 18:06:13 +08:00
check_vad_update,
check_asr_update,
2025-05-20 22:58:42 +08:00
filter_sensitive_info,
2025-03-31 21:40:48 +08:00
)
2025-05-27 18:06:44 +08:00
from typing import Dict, Any
from collections import deque
2025-05-29 23:56:34 +08:00
from core.utils.modules_initialize import (
initialize_modules,
initialize_tts,
initialize_asr,
)
from core.handle.reportHandle import report, enqueue_tool_report
2025-05-27 18:06:44 +08:00
from core.providers.tts.default import DefaultTTS
2025-05-24 12:11:13 +08:00
from concurrent.futures import ThreadPoolExecutor
2025-05-27 18:06:44 +08:00
from core.utils.dialogue import Message, Dialogue
2025-05-29 23:56:34 +08:00
from core.providers.asr.dto.dto import InterfaceType
2025-05-27 18:06:44 +08:00
from core.handle.textHandle import handleTextMessage
2025-06-26 09:28:29 +08:00
from core.providers.tools.unified_tool_handler import UnifiedToolHandler
2025-05-27 18:06:44 +08:00
from plugins_func.loadplugins import auto_import_modules
from plugins_func.register import Action, ActionResponse
2025-10-13 17:52:28 +08:00
from core.auth import AuthenticationError
from config.config_loader import get_private_config_from_api
2025-05-27 18:06:44 +08:00
from core.providers.tts.dto.dto import ContentType, TTSMessageDTO, SentenceType
2025-07-11 16:44:50 +08:00
from config.logger import setup_logging, build_module_string, create_connection_logger
from config.manage_api_client import DeviceNotFoundException, DeviceBindException, generate_and_save_chat_title
2025-07-08 16:59:38 +08:00
from core.utils.prompt_manager import PromptManager
from core.utils.voiceprint_provider import VoiceprintProvider
from core.utils.util import get_system_error_response
from core.utils import textUtils
2025-02-26 01:33:05 +08:00
2025-02-18 00:07:19 +08:00
TAG = __name__
2025-03-31 21:40:48 +08:00
auto_import_modules("plugins_func.functions")
2025-02-26 01:33:05 +08:00
class TTSException(RuntimeError):
pass
2026-05-06 16:53:06 +08:00
# direct_answer 虚拟工具定义
# 不是真实工具,是路由机制:将"调不调工具"的二选一变为"调哪个"的多选,防止小模型误触发真实工具
DIRECT_ANSWER_TOOL = {
"type": "function",
"function": {
"name": "direct_answer",
"description": "当用户的请求不匹配其他任何工具时,可用此选项直接回复。将回复内容写在response参数里。",
"parameters": {
"type": "object",
"properties": {
"response": {
"type": "string",
"description": "你回复用户的完整内容",
},
},
"required": ["response"],
},
},
}
2025-02-02 23:01:14 +08:00
class ConnectionHandler:
2025-03-31 21:40:48 +08:00
def __init__(
self,
config: Dict[str, Any],
_vad,
_asr,
_llm,
_memory,
_intent,
server=None,
2025-03-31 21:40:48 +08:00
):
2025-05-07 18:06:13 +08:00
self.common_config = config
self.config = copy.deepcopy(config)
self.session_id = str(uuid.uuid4())
2025-02-18 00:07:19 +08:00
self.logger = setup_logging()
self.server = server # 保存server实例的引用
2025-02-02 23:01:14 +08:00
2025-11-23 12:29:18 +08:00
self.need_bind = False # 是否需要绑定设备
2025-12-12 18:58:24 +08:00
self.bind_completed_event = asyncio.Event()
2025-11-23 12:29:18 +08:00
self.bind_code = None # 绑定设备的验证码
self.last_bind_prompt_time = 0 # 上次播放绑定提示的时间戳(秒)
2025-12-01 18:46:42 +08:00
self.bind_prompt_interval = 60 # 绑定提示播放间隔(秒)
2025-11-23 12:29:18 +08:00
2025-05-02 00:07:36 +08:00
self.read_config_from_api = self.config.get("read_config_from_api", False)
2025-04-15 18:30:12 +08:00
self.websocket: websockets.ServerConnection | None = None
2025-02-02 23:01:14 +08:00
self.headers = None
2025-04-30 17:29:27 +08:00
self.device_id = None
2025-03-17 14:20:40 +08:00
self.client_ip = None
2025-02-02 23:01:14 +08:00
self.prompt = None
self.welcome_msg = None
self.max_output_size = 0
self.chat_history_conf = 0
2025-06-04 11:41:04 +08:00
self.audio_format = "opus"
self.sample_rate = 24000 # 默认采样率,从客户端 hello 消息中动态更新
2025-02-04 13:57:05 +08:00
# 客户端状态相关
2025-02-04 12:20:10 +08:00
self.client_abort = False
2025-05-30 15:47:32 +08:00
self.client_is_speaking = False
2025-02-04 13:57:05 +08:00
self.client_listen_mode = "auto"
2025-02-02 23:01:14 +08:00
# 线程任务相关
self.loop = None # 在 handle_connection 中获取运行中的事件循环
2025-02-02 23:01:14 +08:00
self.stop_event = threading.Event()
self.executor = ThreadPoolExecutor(max_workers=5)
2025-02-02 23:01:14 +08:00
2025-05-13 15:54:00 +08:00
# 添加上报线程池
self.report_queue = queue.Queue()
self.report_thread = None
# 未来可以通过修改此处,调节asr的上报和tts的上报,目前默认都开启
self.report_asr_enable = self.read_config_from_api
self.report_tts_enable = self.read_config_from_api
2025-04-30 17:29:27 +08:00
2025-02-02 23:01:14 +08:00
# 依赖的组件
2025-05-07 18:06:13 +08:00
self.vad = None
self.asr = None
2025-05-26 22:30:45 +08:00
self.tts = None
2025-05-07 18:06:13 +08:00
self._asr = _asr
self._vad = _vad
2025-02-02 23:01:14 +08:00
self.llm = _llm
2025-03-03 15:00:04 +08:00
self.memory = _memory
2025-03-09 21:33:45 +08:00
self.intent = _intent
2025-02-02 23:01:14 +08:00
# 为每个连接单独管理声纹识别
self.voiceprint_provider = None
2025-02-02 23:01:14 +08:00
# vad相关变量
self.client_audio_buffer = bytearray()
2025-02-02 23:01:14 +08:00
self.client_have_voice = False
2025-10-22 10:46:57 +08:00
self.client_voice_window = deque(maxlen=5)
2025-11-23 12:29:18 +08:00
self.first_activity_time = 0.0 # 记录首次活动的时间(毫秒)
2025-06-27 23:38:05 +08:00
self.last_activity_time = 0.0 # 统一的活动时间戳(毫秒)
self.vad_last_voice_time = 0.0 # 记录用户最后一次说话的时间(毫秒)
2025-02-02 23:01:14 +08:00
self.client_voice_stop = False
self.last_is_voice = False
2025-02-02 23:01:14 +08:00
# asr相关变量
2025-06-04 11:41:04 +08:00
# 因为实际部署时可能会用到公共的本地ASR,不能把变量暴露给公共ASR
# 所以涉及到ASR的变量,需要在这里定义,属于connection的私有变量
2025-02-02 23:01:14 +08:00
self.asr_audio = []
2025-06-04 11:41:04 +08:00
self.asr_audio_queue = queue.Queue()
2026-01-05 11:17:04 +08:00
self.current_speaker = None # 存储当前说话人
2025-02-02 23:01:14 +08:00
# llm相关变量
self.dialogue = Dialogue()
# tts相关变量
2025-05-26 02:20:38 +08:00
self.sentence_id = None
2025-07-23 14:35:59 +08:00
# 处理TTS响应没有文本返回
self.tts_MessageText = ""
2025-02-02 23:01:14 +08:00
2025-02-24 18:06:13 +08:00
# iot相关变量
self.iot_descriptors = {}
2025-03-31 22:54:37 +08:00
self.func_handler = None
2025-02-24 18:06:13 +08:00
2025-04-12 17:36:04 +08:00
self.cmd_exit = self.config["exit_commands"]
2025-02-26 01:33:05 +08:00
2025-05-09 11:39:32 +08:00
# 是否在聊天结束后关闭连接
self.close_after_chat = False
self.load_function_plugin = False
self.intent_type = "nointent"
2025-03-09 21:33:45 +08:00
self.timeout_seconds = (
int(self.config.get("close_connection_no_voice_time", 120)) + 60
) # 在原来第一道关闭的基础上加60秒,进行二道关闭
2025-06-27 23:38:05 +08:00
self.timeout_task = None
2025-05-28 11:49:18 +08:00
# {"mcp":true} 表示启用MCP功能
self.features = None
2025-05-06 14:57:29 +08:00
2025-09-10 21:40:25 +08:00
# 标记连接是否来自MQTT
self.conn_from_mqtt_gateway = False
2025-07-08 16:59:38 +08:00
# 初始化提示词管理器
self.prompt_manager = PromptManager(self.config, self.logger)
2025-07-08 16:59:38 +08:00
async def handle_connection(self, ws: websockets.ServerConnection):
2025-02-02 23:01:14 +08:00
try:
# 获取运行中的事件循环(必须在异步上下文中)
self.loop = asyncio.get_running_loop()
2025-02-13 17:06:48 +08:00
# 获取并验证headers
self.headers = dict(ws.request.headers)
2025-07-24 14:38:56 +08:00
real_ip = self.headers.get("x-real-ip") or self.headers.get(
"x-forwarded-for"
)
if real_ip:
self.client_ip = real_ip.split(",")[0].strip()
else:
self.client_ip = ws.remote_address[0]
2025-03-31 21:40:48 +08:00
self.logger.bind(tag=TAG).info(
f"{self.client_ip} conn - Headers: {self.headers}"
)
2025-02-14 23:09:12 +08:00
2025-10-11 15:27:18 +08:00
self.device_id = self.headers.get("device-id", None)
# 认证通过,继续处理
self.websocket = ws
2025-09-10 21:40:25 +08:00
# 检查是否来自MQTT连接
request_path = ws.request.path
2025-09-10 22:20:43 +08:00
self.conn_from_mqtt_gateway = request_path.endswith("?from=mqtt_gateway")
if self.conn_from_mqtt_gateway:
self.logger.bind(tag=TAG).info("连接来自:MQTT网关")
2025-09-10 21:40:25 +08:00
2025-06-27 23:38:05 +08:00
# 初始化活动时间戳
2025-11-23 12:29:18 +08:00
self.first_activity_time = time.time() * 1000
2025-06-27 23:38:05 +08:00
self.last_activity_time = time.time() * 1000
# 启动超时检查任务
self.timeout_task = asyncio.create_task(self._check_timeout())
self.welcome_msg = self.config["xiaozhi"]
self.welcome_msg["session_id"] = self.session_id
# 从配置中读取采样率
self.sample_rate = self.welcome_msg["audio_params"]["sample_rate"]
self.logger.bind(tag=TAG).info(f"配置输出音频采样率为: {self.sample_rate}")
# 在后台初始化配置和组件(完全不阻塞主循环)
asyncio.create_task(self._background_initialize())
2025-03-01 01:54:55 +08:00
2025-02-13 17:06:48 +08:00
try:
async for message in self.websocket:
await self._route_message(message)
except websockets.exceptions.ConnectionClosed:
2025-02-18 00:07:19 +08:00
self.logger.bind(tag=TAG).info("客户端断开连接")
2025-02-14 23:09:12 +08:00
2025-02-13 17:06:48 +08:00
except AuthenticationError as e:
2025-02-18 00:07:19 +08:00
self.logger.bind(tag=TAG).error(f"Authentication failed: {str(e)}")
2025-02-13 17:06:48 +08:00
return
except Exception as e:
2025-02-24 22:04:48 +08:00
stack_trace = traceback.format_exc()
self.logger.bind(tag=TAG).error(f"Connection error: {str(e)}-{stack_trace}")
2025-02-13 17:06:48 +08:00
return
2025-03-03 15:00:04 +08:00
finally:
try:
await self._save_and_close(ws)
except Exception as final_error:
self.logger.bind(tag=TAG).error(f"最终清理时出错: {final_error}")
# 确保即使保存记忆失败,也要关闭连接
try:
await self.close(ws)
except Exception as close_error:
self.logger.bind(tag=TAG).error(
f"强制关闭连接时出错: {close_error}"
)
async def _save_and_close(self, ws):
"""保存记忆并关闭连接"""
try:
# 守护线程1:独立生成标题(不依赖记忆模型)
if self.session_id:
def generate_title_task():
try:
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
loop.run_until_complete(
generate_and_save_chat_title(self.session_id)
)
except Exception as e:
self.logger.bind(tag=TAG).error(f"生成标题失败: {e}")
finally:
try:
loop.close()
except Exception:
pass
threading.Thread(target=generate_title_task, daemon=True).start()
# 守护线程2:走老流程记忆保存(仅记忆,不含标题)
2025-05-06 13:10:26 +08:00
if self.memory:
2025-05-14 11:22:09 +08:00
# 使用线程池异步保存记忆
def save_memory_task():
try:
# 创建新事件循环(避免与主循环冲突)
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
2025-05-15 16:13:32 +08:00
loop.run_until_complete(
2025-12-12 12:53:59 +08:00
self.memory.save_memory(
self.dialogue.dialogue, self.session_id
)
2025-05-15 16:13:32 +08:00
)
2025-05-14 11:22:09 +08:00
except Exception as e:
self.logger.bind(tag=TAG).error(f"保存记忆失败: {e}")
finally:
try:
loop.close()
except Exception:
pass
2025-05-14 11:22:09 +08:00
# 启动线程保存记忆,不等待完成
threading.Thread(target=save_memory_task, daemon=True).start()
except Exception as e:
self.logger.bind(tag=TAG).error(f"保存记忆失败: {e}")
finally:
2025-05-14 11:22:09 +08:00
# 立即关闭连接,不等待记忆保存完成
try:
await self.close(ws)
except Exception as close_error:
self.logger.bind(tag=TAG).error(
f"保存记忆后关闭连接失败: {close_error}"
)
2025-02-02 23:01:14 +08:00
2025-12-13 21:45:31 +08:00
async def _discard_message_with_bind_prompt(self):
"""丢弃消息并检查是否需要播放绑定提示"""
current_time = time.time()
# 检查是否需要播放绑定提示
if current_time - self.last_bind_prompt_time >= self.bind_prompt_interval:
self.last_bind_prompt_time = current_time
# 复用现有的绑定提示逻辑
from core.handle.receiveAudioHandle import check_bind_device
asyncio.create_task(check_bind_device(self))
2025-02-02 23:01:14 +08:00
async def _route_message(self, message):
"""消息路由"""
2025-12-13 21:45:31 +08:00
# 检查是否已经获取到真实的绑定状态
if not self.bind_completed_event.is_set():
# 还没有获取到真实状态,等待直到获取到真实状态或超时
try:
await asyncio.wait_for(self.bind_completed_event.wait(), timeout=1)
except asyncio.TimeoutError:
# 超时仍未获取到真实状态,丢弃消息
await self._discard_message_with_bind_prompt()
return
2025-12-12 18:58:24 +08:00
2025-12-13 21:45:31 +08:00
# 已经获取到真实状态,检查是否需要绑定
if self.need_bind:
# 需要绑定,丢弃消息
await self._discard_message_with_bind_prompt()
2025-12-12 18:58:24 +08:00
return
2025-12-13 21:45:31 +08:00
# 不需要绑定,继续处理消息
2025-02-02 23:01:14 +08:00
if isinstance(message, str):
2025-02-04 13:57:05 +08:00
await handleTextMessage(self, message)
2025-02-02 23:01:14 +08:00
elif isinstance(message, bytes):
2025-09-10 21:40:25 +08:00
if self.vad is None or self.asr is None:
2025-06-04 11:41:04 +08:00
return
2025-09-08 11:04:42 +08:00
2025-09-10 21:40:25 +08:00
# 处理来自MQTT网关的音频包
if self.conn_from_mqtt_gateway and len(message) >= 16:
handled = await self._process_mqtt_audio_message(message)
if handled:
return
2025-09-09 09:37:31 +08:00
# 不需要头部处理或没有头部时,直接处理原始消息
2025-06-04 11:41:04 +08:00
self.asr_audio_queue.put(message)
2025-02-02 23:01:14 +08:00
2025-09-10 21:40:25 +08:00
async def _process_mqtt_audio_message(self, message):
"""
处理来自MQTT网关的音频消息,解析16字节头部并提取音频数据
Args:
message: 包含头部的音频消息
Returns:
bool: 是否成功处理了消息
"""
try:
# 提取头部信息
timestamp = int.from_bytes(message[8:12], "big")
audio_length = int.from_bytes(message[12:16], "big")
# 提取音频数据
if audio_length > 0 and len(message) >= 16 + audio_length:
# 有指定长度,提取精确的音频数据
audio_data = message[16 : 16 + audio_length]
# 基于时间戳进行排序处理
self._process_websocket_audio(audio_data, timestamp)
return True
elif len(message) > 16:
# 没有指定长度或长度无效,去掉头部后处理剩余数据
audio_data = message[16:]
self.asr_audio_queue.put(audio_data)
return True
except Exception as e:
self.logger.bind(tag=TAG).error(f"解析WebSocket音频包失败: {e}")
# 处理失败,返回False表示需要继续处理
return False
2025-09-08 11:04:42 +08:00
def _process_websocket_audio(self, audio_data, timestamp):
"""处理WebSocket格式的音频包"""
# 初始化时间戳序列管理
2025-09-10 21:40:25 +08:00
if not hasattr(self, "audio_timestamp_buffer"):
2025-09-08 11:04:42 +08:00
self.audio_timestamp_buffer = {}
self.last_processed_timestamp = 0
self.max_timestamp_buffer_size = 20
2025-09-10 21:40:25 +08:00
2025-09-08 11:04:42 +08:00
# 如果时间戳是递增的,直接处理
if timestamp >= self.last_processed_timestamp:
self.asr_audio_queue.put(audio_data)
self.last_processed_timestamp = timestamp
2025-09-10 21:40:25 +08:00
2025-09-08 11:04:42 +08:00
# 处理缓冲区中的后续包
processed_any = True
while processed_any:
processed_any = False
for ts in sorted(self.audio_timestamp_buffer.keys()):
if ts > self.last_processed_timestamp:
buffered_audio = self.audio_timestamp_buffer.pop(ts)
self.asr_audio_queue.put(buffered_audio)
self.last_processed_timestamp = ts
processed_any = True
break
else:
# 乱序包,暂存
if len(self.audio_timestamp_buffer) < self.max_timestamp_buffer_size:
self.audio_timestamp_buffer[timestamp] = audio_data
else:
self.asr_audio_queue.put(audio_data)
2025-05-07 14:36:08 +08:00
async def handle_restart(self, message):
"""处理服务器重启请求"""
try:
self.logger.bind(tag=TAG).info("收到服务器重启指令,准备执行...")
# 发送确认响应
await self.websocket.send(
json.dumps(
{
"type": "server",
"status": "success",
"message": "服务器重启中...",
2025-05-20 22:58:42 +08:00
"content": {"action": "restart"},
}
)
)
2025-05-07 14:36:08 +08:00
# 异步执行重启操作
def restart_server():
"""实际执行重启的方法"""
time.sleep(1)
self.logger.bind(tag=TAG).info("执行服务器重启...")
2025-05-07 16:17:50 +08:00
subprocess.Popen(
[sys.executable, "app.py"],
stdin=sys.stdin,
stdout=sys.stdout,
stderr=sys.stderr,
start_new_session=True,
2025-05-07 16:17:50 +08:00
)
os._exit(0)
2025-05-07 14:36:08 +08:00
# 使用线程执行重启避免阻塞事件循环
threading.Thread(target=restart_server, daemon=True).start()
except Exception as e:
self.logger.bind(tag=TAG).error(f"重启失败: {str(e)}")
await self.websocket.send(
json.dumps(
{
"type": "server",
"status": "error",
"message": f"Restart failed: {str(e)}",
2025-05-20 22:58:42 +08:00
"content": {"action": "restart"},
}
)
)
2025-05-07 14:36:08 +08:00
2025-05-07 18:06:13 +08:00
def _initialize_components(self):
2025-05-27 18:51:08 +08:00
try:
2025-12-13 14:35:55 +08:00
if self.tts is None:
self.tts = self._initialize_tts()
# 打开语音合成通道
asyncio.run_coroutine_threadsafe(
self.tts.open_audio_channels(self), self.loop
)
if self.need_bind:
2025-12-15 17:31:13 +08:00
self.bind_completed_event.set()
2025-12-13 14:35:55 +08:00
return
2025-05-28 01:13:25 +08:00
self.selected_module_str = build_module_string(
self.config.get("selected_module", {})
)
2025-07-11 16:44:50 +08:00
self.logger = create_connection_logger(self.selected_module_str)
2025-07-24 14:38:56 +08:00
2025-05-27 18:51:08 +08:00
"""初始化组件"""
if self.config.get("prompt") is not None:
2025-07-08 16:59:38 +08:00
user_prompt = self.config["prompt"]
# 使用快速提示词进行初始化
prompt = self.prompt_manager.get_quick_prompt(user_prompt)
self.change_system_prompt(prompt)
2025-05-27 18:51:08 +08:00
self.logger.bind(tag=TAG).info(
2025-07-08 16:59:38 +08:00
f"快速初始化组件: prompt成功 {prompt[:50]}..."
2025-05-27 18:51:08 +08:00
)
"""初始化本地组件"""
if self.vad is None:
self.vad = self._vad
if self.asr is None:
2025-05-29 23:56:34 +08:00
self.asr = self._initialize_asr()
2025-07-24 14:38:56 +08:00
# 初始化声纹识别
self._initialize_voiceprint()
2025-05-29 23:56:34 +08:00
# 打开语音识别通道
asyncio.run_coroutine_threadsafe(
self.asr.open_audio_channels(self), self.loop
)
2025-05-07 18:06:13 +08:00
2025-05-27 18:51:08 +08:00
"""加载记忆"""
self._initialize_memory()
"""加载意图识别"""
self._initialize_intent()
"""初始化上报线程"""
self._init_report_threads()
2025-07-08 16:59:38 +08:00
"""更新系统提示词"""
self._init_prompt_enhancement()
2026-04-27 11:08:25 +08:00
"""注入工具调用few-shot示例(仅function_call模式)"""
self._inject_tool_call_fewshot()
2025-07-08 16:59:38 +08:00
2025-05-27 18:51:08 +08:00
except Exception as e:
self.logger.bind(tag=TAG).error(f"实例化组件失败: {e}")
2025-04-30 17:29:27 +08:00
2025-07-08 16:59:38 +08:00
def _init_prompt_enhancement(self):
2025-12-12 18:58:24 +08:00
2025-07-08 16:59:38 +08:00
# 更新上下文信息
self.prompt_manager.update_context_info(self, self.client_ip)
enhanced_prompt = self.prompt_manager.build_enhanced_prompt(
self.config["prompt"],
self.device_id,
self.client_ip,
emoji_enabled=(self.features or {}).get("emoji", True),
2025-07-08 16:59:38 +08:00
)
if enhanced_prompt:
self.change_system_prompt(enhanced_prompt)
self.logger.bind(tag=TAG).debug("系统提示词已增强更新")
2025-07-08 16:59:38 +08:00
2026-04-27 11:08:25 +08:00
def _inject_tool_call_fewshot(self):
2026-05-06 16:53:06 +08:00
"""注入工具调用 few-shot 示例到对话历史。
结构:正样本(工具调用示例)放在动态 system 之前,可命中前缀缓存;
负样本(直接回答示例)放在动态 system 之后、紧挨真实用户消息,
确保模型在处理用户消息前最后看到的是"不调工具"的行为模式。
2026-04-27 11:08:25 +08:00
"""
if self.intent_type != "function_call":
return
if not hasattr(self, "func_handler") or self.func_handler is None:
return
tools = self.func_handler.get_functions()
if not tools:
return
tool_names = {t.get("function", {}).get("name") for t in tools}
2026-05-06 16:53:06 +08:00
# === few-shot 示例(is_temporary===
# 展示 direct_answer 携带 response 参数的用法,一次调用完成回复
# 示例1direct_answer(回复内容写在 response 参数里,无需递归)
da_tc_id = "fewshot_da_001"
self.dialogue.put(Message(role="user", content="给我讲个故事吧", is_temporary=True))
self.dialogue.put(Message(
role="assistant",
tool_calls=[{
"id": da_tc_id,
"function": {"arguments": '{"response": "好呀,你想听什么类型的呀?童话、冒险还是搞笑的?选一个我给你开讲~"}', "name": "direct_answer"},
"type": "function", "index": 0,
}],
is_temporary=True,
))
self.dialogue.put(Message(
role="tool", tool_call_id=da_tc_id,
content="已直接回复", is_temporary=True,
))
# 示例2:真实工具调用(handle_exit_intent
2026-04-27 11:08:25 +08:00
if "handle_exit_intent" in tool_names:
tc_id = "fewshot_exit_001"
self.dialogue.put(Message(role="user", content="拜拜", is_temporary=True))
self.dialogue.put(Message(
role="assistant",
tool_calls=[{
"id": tc_id,
"function": {"arguments": '{"say_goodbye": "再见,下次再聊~"}', "name": "handle_exit_intent"},
"type": "function", "index": 0,
}],
is_temporary=True,
))
self.dialogue.put(Message(
role="tool", tool_call_id=tc_id,
content="退出意图已处理", is_temporary=True,
))
self.dialogue.put(Message(
role="assistant", content="再见,下次再聊~", is_temporary=True,
))
self.logger.bind(tag=TAG).debug("已注入工具调用 few-shot 示例")
2025-04-30 17:29:27 +08:00
def _init_report_threads(self):
"""初始化ASR和TTS上报线程"""
2025-05-06 13:10:26 +08:00
if not self.read_config_from_api or self.need_bind:
2025-05-02 00:07:36 +08:00
return
if self.chat_history_conf == 0:
return
if self.report_thread is None or not self.report_thread.is_alive():
self.report_thread = threading.Thread(
target=self._report_worker, daemon=True
2025-04-30 17:29:27 +08:00
)
self.report_thread.start()
2025-04-30 17:29:27 +08:00
self.logger.bind(tag=TAG).info("TTS上报线程已启动")
2025-03-18 14:26:27 +08:00
2025-05-26 22:30:45 +08:00
def _initialize_tts(self):
"""初始化TTS"""
tts = None
if not self.need_bind:
tts = initialize_tts(self.config)
if tts is None:
tts = DefaultTTS(self.config, delete_audio_file=True)
return tts
2025-05-29 23:56:34 +08:00
def _initialize_asr(self):
"""初始化ASR"""
2025-12-13 21:45:31 +08:00
if (
self._asr is not None
and hasattr(self._asr, "interface_type")
and self._asr.interface_type == InterfaceType.LOCAL
2025-12-13 21:45:31 +08:00
):
2025-05-29 23:56:34 +08:00
# 如果公共ASR是本地服务,则直接返回
# 因为本地一个实例ASR,可以被多个连接共享
asr = self._asr
else:
# 如果公共ASR是远程服务,则初始化一个新实例
# 因为远程ASR,涉及到websocket连接和接收线程,需要每个连接一个实例
asr = initialize_asr(self.config)
return asr
def _initialize_voiceprint(self):
"""为当前连接初始化声纹识别"""
try:
voiceprint_config = self.config.get("voiceprint", {})
if voiceprint_config:
voiceprint_provider = VoiceprintProvider(voiceprint_config)
2025-09-08 16:26:39 +08:00
if voiceprint_provider is not None and voiceprint_provider.enabled:
self.voiceprint_provider = voiceprint_provider
self.logger.bind(tag=TAG).info("声纹识别功能已在连接时动态启用")
else:
self.logger.bind(tag=TAG).warning("声纹识别功能启用但配置不完整")
else:
2025-09-08 16:26:39 +08:00
self.logger.bind(tag=TAG).info("声纹识别功能未启用")
except Exception as e:
self.logger.bind(tag=TAG).warning(f"声纹识别初始化失败: {str(e)}")
async def _background_initialize(self):
"""在后台初始化配置和组件(完全不阻塞主循环)"""
try:
# 异步获取差异化配置
await self._initialize_private_config_async()
# 在线程池中初始化组件
self.executor.submit(self._initialize_components)
except Exception as e:
self.logger.bind(tag=TAG).error(f"后台初始化失败: {e}")
async def _initialize_private_config_async(self):
"""从接口异步获取差异化配置(异步版本,不阻塞主循环)"""
2025-05-02 00:07:36 +08:00
if not self.read_config_from_api:
2025-12-13 21:45:31 +08:00
self.need_bind = False
2025-12-13 14:35:55 +08:00
self.bind_completed_event.set()
2025-04-12 17:36:04 +08:00
return
try:
begin_time = time.time()
private_config = await get_private_config_from_api(
2025-04-12 17:36:04 +08:00
self.config,
self.headers.get("device-id"),
self.headers.get("client-id", self.headers.get("device-id")),
2025-04-12 17:36:04 +08:00
)
2025-04-15 00:44:34 +08:00
private_config["delete_audio"] = bool(self.config.get("delete_audio", True))
self.logger.bind(tag=TAG).info(
f"{time.time() - begin_time} 秒,异步获取差异化配置成功: {json.dumps(filter_sensitive_info(private_config), ensure_ascii=False)}"
)
2025-12-12 18:58:24 +08:00
self.need_bind = False
self.bind_completed_event.set()
2025-04-15 18:30:12 +08:00
except DeviceNotFoundException as e:
self.need_bind = True
private_config = {}
except DeviceBindException as e:
self.need_bind = True
self.bind_code = e.bind_code
private_config = {}
2025-04-12 17:36:04 +08:00
except Exception as e:
2025-04-15 18:30:12 +08:00
self.need_bind = True
self.logger.bind(tag=TAG).error(f"异步获取差异化配置失败: {e}")
2025-04-12 17:36:04 +08:00
private_config = {}
2025-05-07 18:06:13 +08:00
init_llm, init_tts, init_memory, init_intent = (
2025-04-12 17:36:04 +08:00
False,
False,
False,
False,
)
2025-05-07 18:06:13 +08:00
init_vad = check_vad_update(self.common_config, private_config)
init_asr = check_asr_update(self.common_config, private_config)
2025-06-12 09:54:07 +08:00
if init_vad:
self.config["VAD"] = private_config["VAD"]
2025-06-12 09:54:07 +08:00
self.config["selected_module"]["VAD"] = private_config["selected_module"][
"VAD"
]
if init_asr:
self.config["ASR"] = private_config["ASR"]
2025-06-12 09:54:07 +08:00
self.config["selected_module"]["ASR"] = private_config["selected_module"][
"ASR"
]
2025-05-07 18:06:13 +08:00
if private_config.get("TTS", None) is not None:
init_tts = True
self.config["TTS"] = private_config["TTS"]
self.config["selected_module"]["TTS"] = private_config["selected_module"][
"TTS"
2025-04-12 17:36:04 +08:00
]
if private_config.get("LLM", None) is not None:
init_llm = True
2025-04-13 18:10:17 +08:00
self.config["LLM"] = private_config["LLM"]
2025-04-12 17:36:04 +08:00
self.config["selected_module"]["LLM"] = private_config["selected_module"][
"LLM"
]
2025-07-17 16:08:13 +08:00
if private_config.get("VLLM", None) is not None:
self.config["VLLM"] = private_config["VLLM"]
self.config["selected_module"]["VLLM"] = private_config["selected_module"][
"VLLM"
]
2025-04-12 17:36:04 +08:00
if private_config.get("Memory", None) is not None:
init_memory = True
2025-04-13 18:10:17 +08:00
self.config["Memory"] = private_config["Memory"]
2025-04-12 17:36:04 +08:00
self.config["selected_module"]["Memory"] = private_config[
"selected_module"
]["Memory"]
if private_config.get("Intent", None) is not None:
init_intent = True
2025-04-13 18:10:17 +08:00
self.config["Intent"] = private_config["Intent"]
2025-06-12 16:52:56 +08:00
model_intent = private_config.get("selected_module", {}).get("Intent", {})
self.config["selected_module"]["Intent"] = model_intent
# 加载插件配置
2025-06-12 16:52:56 +08:00
if model_intent != "Intent_nointent":
plugin_from_server = private_config.get("plugins", {})
for plugin, config_str in plugin_from_server.items():
plugin_from_server[plugin] = json.loads(config_str)
2025-06-12 16:52:56 +08:00
self.config["plugins"] = plugin_from_server
self.config["Intent"][self.config["selected_module"]["Intent"]][
"functions"
] = plugin_from_server.keys()
2025-05-07 18:06:13 +08:00
if private_config.get("prompt", None) is not None:
self.config["prompt"] = private_config["prompt"]
2025-07-10 09:54:16 +08:00
# 获取声纹信息
if private_config.get("voiceprint", None) is not None:
self.config["voiceprint"] = private_config["voiceprint"]
if private_config.get("summaryMemory", None) is not None:
self.config["summaryMemory"] = private_config["summaryMemory"]
if private_config.get("device_max_output_size", None) is not None:
self.max_output_size = int(private_config["device_max_output_size"])
if private_config.get("chat_history_conf", None) is not None:
self.chat_history_conf = int(private_config["chat_history_conf"])
if private_config.get("mcp_endpoint", None) is not None:
self.config["mcp_endpoint"] = private_config["mcp_endpoint"]
if private_config.get("context_providers", None) is not None:
self.config["context_providers"] = private_config["context_providers"]
2026-04-24 10:06:26 +08:00
# 注入替换词到 TTS 模块配置
if private_config.get("correct_words", None) is not None:
select_tts_module = self.config["selected_module"]["TTS"]
self.config["TTS"][select_tts_module]["correct_words"] = private_config[
"correct_words"
]
# 使用 run_in_executor 在线程池中执行 initialize_modules,避免阻塞主循环
2025-04-12 17:36:04 +08:00
try:
modules = await self.loop.run_in_executor(
None, # 使用默认线程池
initialize_modules,
2025-04-12 17:36:04 +08:00
self.logger,
private_config,
init_vad,
init_asr,
init_llm,
2025-05-07 18:06:13 +08:00
init_tts,
2025-04-12 17:36:04 +08:00
init_memory,
init_intent,
)
except Exception as e:
self.logger.bind(tag=TAG).error(f"初始化组件失败: {e}")
modules = {}
2025-05-07 18:06:13 +08:00
if modules.get("tts", None) is not None:
self.tts = modules["tts"]
if modules.get("vad", None) is not None:
self.vad = modules["vad"]
if modules.get("asr", None) is not None:
self.asr = modules["asr"]
2025-04-12 17:36:04 +08:00
if modules.get("llm", None) is not None:
self.llm = modules["llm"]
if modules.get("intent", None) is not None:
self.intent = modules["intent"]
if modules.get("memory", None) is not None:
self.memory = modules["memory"]
def _initialize_memory(self):
2025-06-01 13:34:32 +08:00
if self.memory is None:
return
"""初始化记忆模块"""
self.memory.init_memory(
2025-05-15 16:13:32 +08:00
role_id=self.device_id,
llm=self.llm,
summary_memory=self.config.get("summaryMemory", None),
save_to_file=not self.read_config_from_api,
)
# 获取记忆总结配置
memory_config = self.config["Memory"]
memory_type = self.config["Memory"][self.config["selected_module"]["Memory"]][
"type"
]
# 如果使用 nomen 或 mem_report_only,直接返回
if memory_type == "nomem" or memory_type == "mem_report_only":
return
# 使用 mem_local_short 模式
elif memory_type == "mem_local_short":
memory_llm_name = memory_config[self.config["selected_module"]["Memory"]][
"llm"
]
if memory_llm_name and memory_llm_name in self.config["LLM"]:
# 如果配置了专用LLM,则创建独立的LLM实例
from core.utils import llm as llm_utils
memory_llm_config = self.config["LLM"][memory_llm_name]
memory_llm_type = memory_llm_config.get("type", memory_llm_name)
memory_llm = llm_utils.create_instance(
memory_llm_type, memory_llm_config
)
self.logger.bind(tag=TAG).info(
f"为记忆总结创建了专用LLM: {memory_llm_name}, 类型: {memory_llm_type}"
)
self.memory.set_llm(memory_llm)
else:
# 否则使用主LLM
self.memory.set_llm(self.llm)
self.logger.bind(tag=TAG).info("使用主LLM作为意图识别模型")
def _initialize_intent(self):
2025-06-01 13:34:32 +08:00
if self.intent is None:
return
2025-05-09 11:39:32 +08:00
self.intent_type = self.config["Intent"][
self.config["selected_module"]["Intent"]
]["type"]
if self.intent_type == "function_call" or self.intent_type == "intent_llm":
self.load_function_plugin = True
"""初始化意图识别模块"""
# 获取意图识别配置
intent_config = self.config["Intent"]
2025-04-13 18:10:17 +08:00
intent_type = self.config["Intent"][self.config["selected_module"]["Intent"]][
"type"
]
# 如果使用 nointent,直接返回
if intent_type == "nointent":
return
# 使用 intent_llm 模式
elif intent_type == "intent_llm":
2025-04-13 18:10:17 +08:00
intent_llm_name = intent_config[self.config["selected_module"]["Intent"]][
"llm"
]
if intent_llm_name and intent_llm_name in self.config["LLM"]:
# 如果配置了专用LLM,则创建独立的LLM实例
from core.utils import llm as llm_utils
intent_llm_config = self.config["LLM"][intent_llm_name]
intent_llm_type = intent_llm_config.get("type", intent_llm_name)
intent_llm = llm_utils.create_instance(
intent_llm_type, intent_llm_config
)
self.logger.bind(tag=TAG).info(
f"为意图识别创建了专用LLM: {intent_llm_name}, 类型: {intent_llm_type}"
)
self.intent.set_llm(intent_llm)
else:
# 否则使用主LLM
self.intent.set_llm(self.llm)
self.logger.bind(tag=TAG).info("使用主LLM作为意图识别模型")
2025-06-25 18:27:08 +08:00
"""加载统一工具处理器"""
self.func_handler = UnifiedToolHandler(self)
2025-06-25 18:27:08 +08:00
# 异步初始化工具处理器
if hasattr(self, "loop") and self.loop:
asyncio.run_coroutine_threadsafe(self.func_handler._initialize(), self.loop)
2025-03-24 10:28:48 +08:00
2025-03-15 11:48:14 +08:00
def change_system_prompt(self, prompt):
self.prompt = prompt
2025-04-13 18:46:04 +08:00
# 更新系统prompt至上下文
self.dialogue.update_system_message(self.prompt)
2025-02-26 01:33:05 +08:00
2025-08-15 16:33:46 +08:00
def chat(self, query, depth=0):
2026-04-09 10:46:46 +08:00
# 保存当前任务的sentence_id到局部变量,避免被新任务覆盖
current_sentence_id = None
if query is not None:
self.logger.bind(tag=TAG).info(f"大模型收到用户消息: {query}")
2025-03-18 14:26:27 +08:00
# 为最顶层时新建会话ID和发送FIRST请求
if depth == 0:
2026-04-09 10:46:46 +08:00
current_sentence_id = str(uuid.uuid4().hex)
self.sentence_id = current_sentence_id # 更新共享属性
2025-08-15 16:33:46 +08:00
self.dialogue.put(Message(role="user", content=query))
self.tts.tts_text_queue.put(
TTSMessageDTO(
2026-04-09 10:46:46 +08:00
sentence_id=current_sentence_id,
sentence_type=SentenceType.FIRST,
content_type=ContentType.ACTION,
)
)
2026-04-09 10:46:46 +08:00
else:
# 递归调用时,使用当前的sentence_id
current_sentence_id = self.sentence_id
# 设置最大递归深度,避免无限循环,可根据实际需求调整
MAX_DEPTH = 5
force_final_answer = False # 标记是否强制最终回答
if depth >= MAX_DEPTH:
2025-11-23 12:29:18 +08:00
self.logger.bind(tag=TAG).debug(
f"已达到最大工具调用深度 {MAX_DEPTH},将强制基于现有信息回答"
)
force_final_answer = True
# 添加系统指令,要求 LLM 基于现有信息回答
2025-11-23 12:29:18 +08:00
self.dialogue.put(
Message(
role="user",
content="[系统提示] 已达到最大工具调用次数限制,请你基于目前已经获取的所有信息,直接给出最终答案。不要再尝试调用任何工具。",
)
)
2025-03-09 21:33:45 +08:00
# Define intent functions
functions = None
# 达到最大深度时,禁用工具调用,强制 LLM 直接回答
2025-11-23 12:29:18 +08:00
if (
self.intent_type == "function_call"
and hasattr(self, "func_handler")
and not force_final_answer
2025-11-23 12:29:18 +08:00
):
functions = list(self.func_handler.get_functions())
2026-05-06 16:53:06 +08:00
# 仅在第一层调用时注入 direct_answer 虚拟工具
# 递归调用(depth>0)不注入,避免模型在生成文本回复时再次调 direct_answer 导致循环
if functions is not None and depth == 0:
functions.append(DIRECT_ANSWER_TOOL)
2025-03-09 21:33:45 +08:00
response_message = []
2025-03-18 14:26:27 +08:00
2025-03-09 21:33:45 +08:00
try:
# 使用带记忆的对话
2025-05-07 18:06:13 +08:00
memory_str = None
# 仅当query非空(代表用户询问)时查询记忆
if self.memory is not None and query:
2025-05-07 18:06:13 +08:00
future = asyncio.run_coroutine_threadsafe(
self.memory.query_memory(query), self.loop
)
memory_str = future.result()
2025-03-09 21:33:45 +08:00
if self.intent_type == "function_call" and functions is not None:
# 使用支持functions的streaming接口
llm_responses = self.llm.response_with_functions(
self.session_id,
2025-07-11 10:15:14 +08:00
self.dialogue.get_llm_dialogue_with_memory(
memory_str, self.config.get("voiceprint", {})
),
functions=functions,
)
else:
llm_responses = self.llm.response(
self.session_id,
2025-07-11 10:15:14 +08:00
self.dialogue.get_llm_dialogue_with_memory(
memory_str, self.config.get("voiceprint", {})
),
)
2025-03-09 21:33:45 +08:00
except Exception as e:
self.logger.bind(tag=TAG).error(f"LLM 处理出错 {query}: {e}")
return None
# 处理流式响应
2025-03-11 00:25:33 +08:00
tool_call_flag = False
# 支持多个并行工具调用 - 使用列表存储
tool_calls_list = [] # 格式: [{"id": "", "name": "", "arguments": ""}]
2025-03-11 00:25:33 +08:00
content_arguments = ""
emotion_flag = True
try:
for response in llm_responses:
if self.client_abort:
break
if self.intent_type == "function_call" and functions is not None:
content, tools_call = response
if "content" in response:
content = response["content"]
tools_call = None
if content is not None and len(content) > 0:
content_arguments += content
if not tool_call_flag and content_arguments.startswith("<tool_call>"):
# print("content_arguments", content_arguments)
tool_call_flag = True
2025-03-09 21:33:45 +08:00
if tools_call is not None and len(tools_call) > 0:
tool_call_flag = True
self._merge_tool_calls(tool_calls_list, tools_call)
2026-05-06 16:53:06 +08:00
# 流式提取 direct_answer 的 response 参数,实时送 TTS
# 使用安全缓冲区,防止 JSON 闭合符号泄漏到 TTS
_DA_STREAM_BUFFER = 5
2026-05-06 16:53:06 +08:00
for tc in tool_calls_list:
if tc["name"] == "direct_answer" and tc.get("arguments"):
da_text = self._extract_direct_answer_response(tc["arguments"])
sent_len = tc.get("_da_sent", 0)
if da_text and len(da_text) > sent_len:
safe_end = max(sent_len, len(da_text) - _DA_STREAM_BUFFER)
if safe_end > sent_len:
new_part = da_text[sent_len:safe_end]
# 清理 delta 中可能泄漏的 JSON 闭合垃圾
new_part = self._clean_response_garbage(new_part)
if new_part:
tc["_da_sent"] = safe_end
self.tts.tts_text_queue.put(
TTSMessageDTO(
sentence_id=current_sentence_id,
sentence_type=SentenceType.MIDDLE,
content_type=ContentType.TEXT,
content_detail=new_part,
)
)
else:
content = response
# 在llm回复中获取情绪表情,一轮对话只在开头获取一次
if emotion_flag and content is not None and content.strip():
if (self.features or {}).get("emoji", True):
asyncio.run_coroutine_threadsafe(
textUtils.get_emotion(self, content),
self.loop,
)
emotion_flag = False
if content is not None and len(content) > 0:
if not tool_call_flag:
response_message.append(content)
self.tts.tts_text_queue.put(
TTSMessageDTO(
2026-04-09 10:46:46 +08:00
sentence_id=current_sentence_id,
sentence_type=SentenceType.MIDDLE,
content_type=ContentType.TEXT,
content_detail=content,
)
)
except Exception as e:
self.logger.bind(tag=TAG).error(f"LLM stream processing error: {e}")
self.tts.tts_text_queue.put(
TTSMessageDTO(
2026-04-09 10:46:46 +08:00
sentence_id=current_sentence_id,
sentence_type=SentenceType.MIDDLE,
content_type=ContentType.TEXT,
content_detail=get_system_error_response(self.config),
)
)
if depth == 0:
self.tts.tts_text_queue.put(
TTSMessageDTO(
2026-04-09 10:46:46 +08:00
sentence_id=current_sentence_id,
sentence_type=SentenceType.LAST,
content_type=ContentType.ACTION,
)
)
return
2025-03-15 11:48:14 +08:00
# 处理function call
if tool_call_flag:
bHasError = False
# 处理基于文本的工具调用格式
if len(tool_calls_list) == 0 and content_arguments:
2025-03-15 11:48:14 +08:00
a = extract_json_from_string(content_arguments)
if a is not None:
try:
content_arguments_json = json.loads(a)
2025-11-23 12:29:18 +08:00
tool_calls_list.append(
{
"id": str(uuid.uuid4().hex),
"name": content_arguments_json["name"],
"arguments": json.dumps(
content_arguments_json["arguments"],
ensure_ascii=False,
),
}
)
2025-03-15 11:48:14 +08:00
except Exception as e:
bHasError = True
response_message.append(a)
else:
bHasError = True
response_message.append(content_arguments)
if bHasError:
2025-03-31 21:40:48 +08:00
self.logger.bind(tag=TAG).error(
f"function call error: {content_arguments}"
)
2026-05-06 16:53:06 +08:00
if not bHasError and len(tool_calls_list) > 0:
# 处理 direct_answer 虚拟工具
direct_answer_calls = [tc for tc in tool_calls_list if tc["name"] == "direct_answer"]
real_tool_calls = [tc for tc in tool_calls_list if tc["name"] != "direct_answer"]
if direct_answer_calls:
self.logger.bind(tag=TAG).debug(
f"模型选择 direct_answer,流式已播报,写入对话历史"
)
for tc in direct_answer_calls:
da_response = self._extract_direct_answer_response(tc.get("arguments", "{}"))
if da_response:
# 刷新流式缓冲区中未发送的部分
sent_len = tc.get("_da_sent", 0)
remaining = da_response[sent_len:]
if remaining:
remaining = self._clean_response_garbage(remaining)
if remaining:
self.tts.tts_text_queue.put(
TTSMessageDTO(
sentence_id=current_sentence_id,
sentence_type=SentenceType.MIDDLE,
content_type=ContentType.TEXT,
content_detail=remaining,
)
)
# 写入对话历史
da_response = self._clean_response_garbage(da_response)
2026-05-06 16:53:06 +08:00
self.tts.store_tts_text(current_sentence_id, da_response)
self.dialogue.put(Message(role="assistant", content=da_response))
if not real_tool_calls:
if depth == 0:
self.tts.tts_text_queue.put(
TTSMessageDTO(
sentence_id=current_sentence_id,
sentence_type=SentenceType.LAST,
content_type=ContentType.ACTION,
)
)
return
tool_calls_list = real_tool_calls
if not bHasError and len(tool_calls_list) > 0:
2026-03-19 16:04:14 +08:00
self.logger.bind(tag=TAG).debug(
f"检测到 {len(tool_calls_list)} 个工具调用"
)
# LLM 流式阶段已播报过的文本
streamed_text = ""
if len(response_message) > 0:
streamed_text = "".join(response_message)
self.tts.store_tts_text(current_sentence_id, streamed_text)
self.dialogue.put(Message(role="assistant", content=streamed_text))
2025-04-16 11:48:40 +08:00
response_message.clear()
2025-03-20 08:59:45 +08:00
# 收集所有工具调用的 Future
futures_with_data = []
for tool_call_data in tool_calls_list:
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']}"
)
# 使用公共方法上报工具调用
2026-03-19 16:04:14 +08:00
tool_input = json.loads(tool_call_data.get("arguments") or "{}")
enqueue_tool_report(self, tool_call_data['name'], tool_input)
future = asyncio.run_coroutine_threadsafe(
2025-11-23 12:29:18 +08:00
self.func_handler.handle_llm_function_call(
self, tool_call_data
),
self.loop,
)
futures_with_data.append((future, tool_call_data, tool_input))
# 工具调用超时时间,可配置,默认30秒
tool_call_timeout = int(self.config.get("tool_call_timeout", 30))
# 等待协程结束(实际等待时长为最慢的那个)
tool_results = []
2026-04-01 09:35:23 +08:00
for future, tool_call_data, tool_input in futures_with_data:
try:
result = future.result(timeout=tool_call_timeout)
tool_results.append((result, tool_call_data))
2026-04-01 14:32:47 +08:00
# 使用公共方法上报工具调用结果
enqueue_tool_report(self, tool_call_data['name'], tool_input, str(result.result) if result.result else None, report_tool_call=False)
except Exception as e:
self.logger.bind(tag=TAG).error(
f"工具调用超时或异常: {tool_call_data['name']}, 错误: {e}"
)
# 超时时返回错误响应,避免整个流程卡死
tool_results.append((
ActionResponse(action=Action.ERROR, result="哎呀,网络遇到点问题,请稍后再试下!"),
tool_call_data
))
2026-04-01 14:32:47 +08:00
# 上报工具调用错误
enqueue_tool_report(self, tool_call_data['name'], tool_input, str(e), report_tool_call=False)
# 统一处理工具调用结果
if tool_results:
self._handle_function_result(tool_results, depth=depth, streamed_text=streamed_text)
2025-03-09 21:33:45 +08:00
# 存储对话内容
2025-03-18 14:26:27 +08:00
if len(response_message) > 0:
2025-07-23 14:35:59 +08:00
text_buff = "".join(response_message)
2026-04-09 10:46:46 +08:00
self.tts.store_tts_text(current_sentence_id, text_buff)
2025-07-24 14:38:56 +08:00
self.dialogue.put(Message(role="assistant", content=text_buff))
if depth == 0:
2025-05-26 02:20:38 +08:00
self.tts.tts_text_queue.put(
TTSMessageDTO(
2026-04-09 10:46:46 +08:00
sentence_id=current_sentence_id,
2025-05-26 02:20:38 +08:00
sentence_type=SentenceType.LAST,
content_type=ContentType.ACTION,
)
)
# 使用lambda延迟计算,只有在DEBUG级别时才执行get_llm_dialogue()
self.logger.bind(tag=TAG).debug(
lambda: json.dumps(
self.dialogue.get_llm_dialogue(), indent=4, ensure_ascii=False
)
2025-07-08 16:59:38 +08:00
)
2025-03-09 21:33:45 +08:00
return True
def _handle_function_result(self, tool_results, depth, streamed_text=""):
need_llm_tools = []
2026-04-21 11:36:06 +08:00
record_tools = []
for result, tool_call_data in tool_results:
2025-11-23 12:29:18 +08:00
if result.action in [
Action.RESPONSE,
Action.NOTFOUND,
Action.ERROR,
]:
text = result.response if result.response else result.result
if streamed_text and text in streamed_text:
self.logger.bind(tag=TAG).debug(
f"Skipping duplicate TTS for tool {tool_call_data['name']}, already streamed"
)
else:
self.tts.tts_one_sentence(self, ContentType.TEXT, content_detail=text)
self.tts.store_tts_text(self.sentence_id, text)
self.dialogue.put(Message(role="assistant", content=text))
elif result.action == Action.REQLLM:
need_llm_tools.append((result, tool_call_data))
2026-04-21 11:36:06 +08:00
elif result.action == Action.RECORD:
record_tools.append((result, tool_call_data))
else:
pass
2026-04-21 11:36:06 +08:00
# Action.RECORD:写入完整工具调用链(assistant(tool_calls) → tool(result) → assistant(response)
# 模型从历史中学到工具调用模式,不额外调用LLM
if record_tools:
# 构造 assistant 消息(含 tool_calls),记录"模型调用了哪些工具"
all_tool_calls = [
{
"id": tool_call_data["id"],
"function": {
"arguments": (
"{}"
if tool_call_data["arguments"] == ""
else tool_call_data["arguments"]
),
"name": tool_call_data["name"],
},
"type": "function",
"index": idx,
}
for idx, (_, tool_call_data) in enumerate(record_tools)
]
self.dialogue.put(Message(role="assistant", tool_calls=all_tool_calls))
# 写入每条工具的执行结果,记录"工具返回了什么"
for result, tool_call_data in record_tools:
text = result.result or ""
self.dialogue.put(
Message(
role="tool",
tool_call_id=(
str(uuid.uuid4())
if tool_call_data["id"] is None
else tool_call_data["id"]
),
content=text,
)
)
# 用固定文本作为最终回复,补全标准三段式,保证下一条消息是 user 而非接 tool
response_parts = []
for result, _ in record_tools:
resp = result.response or result.result
if resp:
response_parts.append(resp)
if response_parts:
self.dialogue.put(Message(role="assistant", content="".join(response_parts)))
if need_llm_tools:
all_tool_calls = [
{
"id": tool_call_data["id"],
"function": {
"arguments": (
"{}"
if tool_call_data["arguments"] == ""
else tool_call_data["arguments"]
2025-05-09 11:39:32 +08:00
),
"name": tool_call_data["name"],
},
"type": "function",
"index": idx,
}
for idx, (_, tool_call_data) in enumerate(need_llm_tools)
]
self.dialogue.put(Message(role="assistant", tool_calls=all_tool_calls))
for result, tool_call_data in need_llm_tools:
text = result.result
if text is not None and len(text) > 0:
self.dialogue.put(
Message(
role="tool",
2025-11-23 12:29:18 +08:00
tool_call_id=(
str(uuid.uuid4())
if tool_call_data["id"] is None
else tool_call_data["id"]
),
content=text,
)
2025-05-09 11:39:32 +08:00
)
self.chat(None, depth=depth + 1)
2025-03-11 00:25:33 +08:00
def _report_worker(self):
"""聊天记录上报工作线程"""
2025-04-30 17:29:27 +08:00
while not self.stop_event.is_set():
try:
# 从队列获取数据,设置超时以便定期检查停止事件
item = self.report_queue.get(timeout=1)
2025-04-30 17:29:27 +08:00
if item is None: # 检测毒丸对象
break
try:
2025-05-28 18:22:31 +08:00
# 检查线程池状态
if self.executor is None:
continue
2025-05-13 15:54:00 +08:00
# 提交任务到线程池
2025-07-24 14:38:56 +08:00
self.executor.submit(self._process_report, *item)
2025-04-30 17:29:27 +08:00
except Exception as e:
self.logger.bind(tag=TAG).error(f"聊天记录上报线程异常: {e}")
2025-04-30 17:29:27 +08:00
except queue.Empty:
continue
except Exception as e:
self.logger.bind(tag=TAG).error(f"聊天记录上报工作线程异常: {e}")
2025-04-30 17:29:27 +08:00
self.logger.bind(tag=TAG).info("聊天记录上报线程已退出")
2025-04-30 17:29:27 +08:00
2025-05-26 20:27:22 +08:00
def _process_report(self, type, text, audio_data, report_time):
2025-05-13 15:54:00 +08:00
"""处理上报任务"""
try:
# 执行异步上报(在事件循环中运行)
asyncio.run(report(self, type, text, audio_data, report_time))
2025-05-13 15:54:00 +08:00
except Exception as e:
self.logger.bind(tag=TAG).error(f"上报处理异常: {e}")
finally:
# 标记任务完成
self.report_queue.task_done()
2025-02-02 23:01:14 +08:00
def clearSpeakStatus(self):
2025-05-30 15:47:32 +08:00
self.client_is_speaking = False
2025-02-18 00:07:19 +08:00
self.logger.bind(tag=TAG).debug(f"清除服务端讲话状态")
2025-02-02 23:01:14 +08:00
async def close(self, ws=None):
2025-02-02 23:01:14 +08:00
"""资源清理方法"""
2025-05-28 18:22:31 +08:00
try:
# 清理 VAD 连接资源
if (
hasattr(self, "vad")
and self.vad
and hasattr(self.vad, "release_conn_resources")
):
self.vad.release_conn_resources(self)
2025-09-08 11:04:42 +08:00
# 清理音频缓冲区
2025-09-10 21:40:25 +08:00
if hasattr(self, "audio_buffer"):
2025-09-08 11:04:42 +08:00
self.audio_buffer.clear()
2025-09-10 21:40:25 +08:00
2025-05-28 18:22:31 +08:00
# 取消超时任务
if self.timeout_task and not self.timeout_task.done():
2025-05-28 18:22:31 +08:00
self.timeout_task.cancel()
try:
await self.timeout_task
except asyncio.CancelledError:
pass
2025-05-28 18:22:31 +08:00
self.timeout_task = None
2025-05-14 11:22:09 +08:00
2025-06-25 18:27:08 +08:00
# 清理工具处理器资源
if hasattr(self, "func_handler") and self.func_handler:
try:
await self.func_handler.cleanup()
except Exception as cleanup_error:
self.logger.bind(tag=TAG).error(
f"清理工具处理器时出错: {cleanup_error}"
)
2025-05-28 18:22:31 +08:00
# 触发停止事件
if self.stop_event:
self.stop_event.set()
2025-02-26 01:33:05 +08:00
2025-05-28 18:22:31 +08:00
# 清空任务队列
self.clear_queues()
2025-03-31 21:40:48 +08:00
2025-05-28 18:22:31 +08:00
# 关闭WebSocket连接
try:
if ws:
# 安全地检查WebSocket状态并关闭
try:
if hasattr(ws, "closed") and not ws.closed:
await ws.close()
elif hasattr(ws, "state") and ws.state.name != "CLOSED":
await ws.close()
else:
# 如果没有closed属性,直接尝试关闭
await ws.close()
except Exception:
# 如果关闭失败,忽略错误
pass
elif self.websocket:
try:
if (
hasattr(self.websocket, "closed")
and not self.websocket.closed
):
await self.websocket.close()
elif (
hasattr(self.websocket, "state")
and self.websocket.state.name != "CLOSED"
):
await self.websocket.close()
else:
# 如果没有closed属性,直接尝试关闭
await self.websocket.close()
except Exception:
# 如果关闭失败,忽略错误
pass
except Exception as ws_error:
self.logger.bind(tag=TAG).error(f"关闭WebSocket连接时出错: {ws_error}")
2025-05-14 11:22:09 +08:00
if self.tts:
await self.tts.close()
if self.asr:
await self.asr.close()
2025-05-28 18:22:31 +08:00
# 最后关闭线程池(避免阻塞)
if self.executor:
try:
self.executor.shutdown(wait=False)
except Exception as executor_error:
self.logger.bind(tag=TAG).error(
f"关闭线程池时出错: {executor_error}"
)
2025-05-28 18:22:31 +08:00
self.executor = None
self.logger.bind(tag=TAG).info("连接资源已释放")
except Exception as e:
self.logger.bind(tag=TAG).error(f"关闭连接时出错: {e}")
finally:
# 确保停止事件被设置
if self.stop_event:
self.stop_event.set()
2025-02-02 23:01:14 +08:00
2025-04-25 09:34:22 +08:00
def clear_queues(self):
2025-05-14 11:22:09 +08:00
"""清空所有任务队列"""
2025-05-27 18:06:44 +08:00
if self.tts:
self.logger.bind(tag=TAG).debug(
f"开始清理: TTS队列大小={self.tts.tts_text_queue.qsize()}, 音频队列大小={self.tts.tts_audio_queue.qsize()}"
)
2025-05-14 11:22:09 +08:00
2025-05-27 18:06:44 +08:00
# 使用非阻塞方式清空队列
2025-05-28 21:34:21 +08:00
for q in [
self.tts.tts_text_queue,
self.tts.tts_audio_queue,
self.report_queue,
]:
2025-05-27 18:06:44 +08:00
if not q:
continue
while True:
try:
q.get_nowait()
except queue.Empty:
break
2025-05-14 11:22:09 +08:00
2025-12-09 18:06:56 +08:00
# 重置音频流控器(取消后台任务并清空队列)
if hasattr(self, "audio_rate_controller") and self.audio_rate_controller:
self.audio_rate_controller.reset()
self.logger.bind(tag=TAG).debug("已重置音频流控器")
2025-05-27 18:06:44 +08:00
self.logger.bind(tag=TAG).debug(
f"清理结束: TTS队列大小={self.tts.tts_text_queue.qsize()}, 音频队列大小={self.tts.tts_audio_queue.qsize()}"
)
def reset_audio_states(self):
"""
重置所有音频相关状态(VAD + ASR)
"""
# Reset VAD states
self.client_audio_buffer.clear()
2025-02-02 23:01:14 +08:00
self.client_have_voice = False
self.client_voice_stop = False
self.client_voice_window.clear()
self.last_is_voice = False
self.vad_last_voice_time = 0.0
# Clear ASR buffers
self.asr_audio.clear()
self.logger.bind(tag=TAG).debug("All audio states reset.")
2025-03-09 21:33:45 +08:00
def chat_and_close(self, text):
"""Chat with the user and then close the connection"""
try:
# Use the existing chat method
self.chat(text)
# After chat is complete, close the connection
self.close_after_chat = True
except Exception as e:
self.logger.bind(tag=TAG).error(f"Chat and close error: {str(e)}")
async def _check_timeout(self):
"""检查连接超时"""
try:
while not self.stop_event.is_set():
2025-11-23 12:29:18 +08:00
last_activity_time = self.last_activity_time
if self.need_bind:
last_activity_time = self.first_activity_time
2025-06-27 23:38:05 +08:00
# 检查是否超时(只有在时间戳已初始化的情况下)
2025-11-23 12:29:18 +08:00
if last_activity_time > 0.0:
2025-06-27 23:38:05 +08:00
current_time = time.time() * 1000
2025-11-23 12:29:18 +08:00
if current_time - last_activity_time > self.timeout_seconds * 1000:
2025-06-27 23:38:05 +08:00
if not self.stop_event.is_set():
self.logger.bind(tag=TAG).info("连接超时,准备关闭")
# 设置停止事件,防止重复处理
self.stop_event.set()
# 使用 try-except 包装关闭操作,确保不会因为异常而阻塞
try:
await self.close(self.websocket)
except Exception as close_error:
self.logger.bind(tag=TAG).error(
f"超时关闭连接时出错: {close_error}"
)
2025-06-27 23:38:05 +08:00
break
# 每10秒检查一次,避免过于频繁
await asyncio.sleep(10)
except Exception as e:
self.logger.bind(tag=TAG).error(f"超时检查任务出错: {e}")
finally:
self.logger.bind(tag=TAG).info("超时检查任务已退出")
2026-05-06 16:53:06 +08:00
@staticmethod
def _extract_direct_answer_response(arguments_str):
"""从 direct_answer 的参数中提取 response 值。
优先使用 json.loads 标准解析,流式阶段 fallback 到字符串提取。
2026-05-06 16:53:06 +08:00
"""
if not arguments_str:
return ""
# 优先尝试标准 JSON 解析(适用于完整且格式正确的 JSON)
try:
data = json.loads(arguments_str)
if isinstance(data, dict) and "response" in data:
return data["response"]
except (json.JSONDecodeError, TypeError):
pass
# Fallback:流式阶段 JSON 可能不完整,使用字符串提取
2026-05-06 16:53:06 +08:00
marker = '"response": "'
idx = arguments_str.find(marker)
if idx < 0:
marker = '"response":"'
idx = arguments_str.find(marker)
if idx < 0:
return ""
start = idx + len(marker)
raw = arguments_str[start:]
# 去掉末尾的 JSON 闭合符号(如果已完整)
if raw.endswith('"}'):
raw = raw[:-2]
elif raw.endswith('"'):
raw = raw[:-1]
# 处理 JSON 转义
raw = raw.replace('\\"', '"').replace('\\n', '\n').replace('\\\\', '\\')
return raw
@staticmethod
def _clean_response_garbage(text):
"""清理 response 中可能泄漏的 JSON 闭合符号。
模型有时会在 response 内容中生成 JSON 闭合字符(如 "}} 或 '})
这些不是故事内容的一部分,需要去除。
"""
if not text:
return text
# 清理独立一行的 JSON 闭合垃圾(如 "}} '}} "}} }} }
_garbage_chars = frozenset('")\'}')
lines = text.split('\n')
cleaned = []
for line in lines:
stripped = line.strip()
if stripped and len(stripped) <= 8 and all(c in _garbage_chars for c in stripped):
continue
cleaned.append(line)
result = '\n'.join(cleaned)
# 清理末尾残留的 JSON 闭合符号
result = re.sub(r'["\'}\]]+$', '', result.rstrip()).rstrip()
return result
def _merge_tool_calls(self, tool_calls_list, tools_call):
"""合并工具调用列表
Args:
tool_calls_list: 已收集的工具调用列表
tools_call: 新的工具调用
"""
for tool_call in tools_call:
2025-11-23 12:29:18 +08:00
tool_index = getattr(tool_call, "index", None)
if tool_index is None:
if tool_call.function.name:
# 有 function_name,说明是新的工具调用
tool_index = len(tool_calls_list)
else:
tool_index = len(tool_calls_list) - 1 if tool_calls_list else 0
# 确保列表有足够的位置
if tool_index >= len(tool_calls_list):
tool_calls_list.append({"id": "", "name": "", "arguments": ""})
# 更新工具调用信息
if tool_call.id:
tool_calls_list[tool_index]["id"] = tool_call.id
if tool_call.function.name:
tool_calls_list[tool_index]["name"] = tool_call.function.name
if tool_call.function.arguments:
2025-11-23 12:29:18 +08:00
tool_calls_list[tool_index]["arguments"] += tool_call.function.arguments