소스 검색

Update dialogue_manager: change frequency

StrayWarrior 3 주 전
부모
커밋
7a7aca0e81
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      dialogue_manager.py

+ 3 - 3
dialogue_manager.py

@@ -426,9 +426,9 @@ class DialogueManager:
 
         # 设置不同偏好的交互时间阈值(小时)
         thresholds = {
-            "low": 24,  # 低频率:一天一次
-            "medium": 12,  # 中频率:半天一次
-            "high": 6  # 高频率:大约6小时一次
+            "low": 48,
+            "medium": 24,
+            "high": 12
         }
 
         threshold = thresholds.get(interaction_frequency, 12)