Skip to content

Commit

Permalink
Merge pull request Ikaros-521#972 from Ikaros-521/owner
Browse files Browse the repository at this point in the history
fix: 语音聊天下,无唤醒词情况下解析异常的bug修复
  • Loading branch information
Ikaros-521 authored Aug 15, 2024
2 parents 0a386cd + e342b66 commit 564774f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ def check_talk_awake(content: str):
}


return {"ret": 0, "is_talk_awake": True, "first": False}
return {"ret": 0, "is_talk_awake": True, "trigger_word": "", "first": False}

# 输出识别结果
logger.info("识别结果:" + content)
Expand Down

0 comments on commit 564774f

Please sign in to comment.