feat(memory): 添加自动关联功能及相关配置支持

This commit is contained in:
Windpicker-owo
2025-11-05 22:15:47 +08:00
parent f23f146d28
commit 7bb0248ca2
5 changed files with 561 additions and 28 deletions

View File

@@ -42,6 +42,7 @@ class EdgeType(Enum):
ATTRIBUTE = "属性关系" # 任意节点 → 属性
CAUSALITY = "因果关系" # 记忆 → 记忆
REFERENCE = "引用关系" # 记忆 → 记忆(转述)
RELATION = "关联关系" # 记忆 → 记忆(自动关联发现的关系)
class MemoryStatus(Enum):