root 2 주 전
부모
커밋
bd5e427750
2개의 변경된 파일170개의 추가작업 그리고 796개의 파일을 삭제
  1. 164 794
      ai-slibra-assistant/data/robot.json
  2. 6 2
      ai-slibra-assistant/util/utils.py

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 164 - 794
ai-slibra-assistant/data/robot.json


+ 6 - 2
ai-slibra-assistant/util/utils.py

@@ -159,7 +159,7 @@ CREATE TABLE botrecords (
                     asr = answer.get("option", [{}])[-1].get("asr", '')
                     code = answer.get("code")
                     opt = answer.get("option", {})
-                    if (code in ["1.10", "1.30"] and asr!="1") or (code == "1.00" and asr not in ["2", "1"]):
+                    if (code in ["1.10", "1.30"] and asr!="1") or (code == "1.00" and asr not in ["2", "1"]) or (code == "98.00" and intent=="others"):
                         if opt:
                             if opt[-1].get("subclass"):
                                 intent = opt[-1].get("subclass")
@@ -167,6 +167,10 @@ CREATE TABLE botrecords (
                                 intent = opt[-1].get("firstclass")
                             else:
                                 intent =opt[-1].get("title", '')
+                            if intent in ["未听清", "打招呼", "准备结束"]:
+                                intent = "未知意图"
+                            if intent == "":
+                                intent = "用户未说话"
                     elif code == "1.20":
                         tags = {"1": "1_停水咨询", "2":"1_漏水保修", "3":"1_户号查询","4":"1_水费查询", "5":"1_水价咨询","6":"1_水质水价保修", "7":"1_投诉建议", "0":"1_转人工"}
                         intent = tags.get(asr, "1_其他")
@@ -258,7 +262,7 @@ def norm_community(asr):
 
 
 if __name__ == "__main__":
-    asr="宝升三号楼"
+    asr="前进区水平社区宝升三号楼"
     print(f"asr:{asr}")
     loc = norm_community(asr)
     print(f"命中小区:{loc}")

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.