Merge pull request #3063 from xinnan-tech/py-bug-fix

fix:修复intent_llm模式下工具不存在时未正确播放提示信息的问题
This commit is contained in:
wengzh
2026-04-01 17:46:23 +08:00
committed by GitHub
@@ -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":