fix:修复intent_llm模式下工具不存在时未正确播放提示信息的问题

This commit is contained in:
3030332422
2026-04-01 09:23:05 +08:00
parent 24a8839753
commit 10eeffdf31
@@ -190,7 +190,7 @@ async def process_intent_result(
result.action == Action.NOTFOUND
or result.action == Action.ERROR
):
text = result.result
text = result.response if result.response else result.result
if text is not None:
speak_txt(conn, text)
elif function_name != "play_music":