接收hello消息中的features信息

This commit is contained in:
myifeng
2025-05-28 11:49:18 +08:00
parent 81689c04a5
commit 19526878b3
2 changed files with 6 additions and 0 deletions
@@ -31,6 +31,10 @@ async def handleHelloMessage(conn, msg_json):
if conn.asr is not None:
conn.asr.set_audio_format(format)
conn.welcome_msg["audio_params"] = audio_params
features = msg_json.get("features")
if features:
conn.logger.bind(tag=TAG).info(f"客户端特性: {features}")
conn.features = features
await conn.websocket.send(json.dumps(conn.welcome_msg))