- 调整了项目结构,将 chat 相关的类移动到 agent/core/chat 包中

- 添加了配置管理功能,支持从文件加载配置
- 添加CoreModel、SliceEvaluator、TaskTrigger、TopicExtractor几个必要模型,具体交互逻辑等待完善
- 优化了记忆图谱的初始化和序列化逻辑,并添加了新的modelPrompt、chatMessages字段
This commit is contained in:
2025-04-14 23:09:09 +08:00
parent 4ccfdf2622
commit 527781cdae
23 changed files with 354 additions and 25 deletions

View File

@@ -25,6 +25,11 @@
<artifactId>fastjson</artifactId>
<version>2.0.56</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.18.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>