进行: 调整认知补充机制; 应当可以进入第二阶段测试

- 调整模块追加认知内容补充机制, 舍弃了原有的CoreContext, 分为多条prompt message注入上文
- 完全去除记忆模块的静态记忆内容
- 在MemoryManager中添加了必要的获取相关字符串的方法,而不是依赖原始的JSON格式
This commit is contained in:
2025-06-03 23:12:40 +08:00
parent a71a133ff1
commit e701c926de
7 changed files with 124 additions and 38 deletions

View File

@@ -12,7 +12,7 @@ public class MemoryTest {
//@Test
public void test1() {
String basicCharacter = "";
MemoryGraph graph = new MemoryGraph("test", basicCharacter);
MemoryGraph graph = new MemoryGraph("test");
HashMap<String, TopicNode> topicMap = new HashMap<>();
TopicNode root1 = new TopicNode();