余尚辉 il y a 19 heures
Parent
commit
245023b5da
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/core/voip/bot.py

+ 1 - 1
src/core/voip/bot.py

@@ -360,7 +360,7 @@ class MyCall(pj.Call):
 
 class ToTextBotAgent:
     def __init__(self, user_asr_text, call_agent):
-        if not user_asr_text or call_agent.action.get("action_code") != "normal":
+        if not user_asr_text or (call_agent.action and call_agent.action.get("action_code") != "normal"):
             print("ASR文本为空,终止执行。")
             return
         self.call_agent = call_agent