- 添加以Agent为入口的注册链

- 调整项目结构
- 定义标准输入类
- 明确层级职责,Agent将负责处理所有原始输入并中转给真正的协调层InteractionHub
- 添加针对Agent层级的websocket能力扩展
This commit is contained in:
2025-04-15 23:05:44 +08:00
parent 527781cdae
commit 27719b7c11
41 changed files with 391 additions and 135 deletions

View File

@@ -2,10 +2,10 @@ package memory;
import org.junit.Before;
import org.junit.Test;
import work.slhaf.agent.core.memory.MemoryGraph;
import work.slhaf.agent.core.memory.pojo.MemorySlice;
import work.slhaf.agent.core.memory.node.MemoryNode;
import work.slhaf.agent.core.memory.node.TopicNode;
import work.slhaf.agent.modules.memory.MemoryGraph;
import work.slhaf.agent.modules.memory.pojo.MemorySlice;
import work.slhaf.agent.modules.memory.node.MemoryNode;
import work.slhaf.agent.modules.memory.node.TopicNode;
import java.io.IOException;
import java.time.LocalDate;

View File

@@ -2,12 +2,12 @@ package memory;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import work.slhaf.agent.core.memory.MemoryGraph;
import work.slhaf.agent.core.memory.pojo.MemorySlice;
import work.slhaf.agent.core.memory.exception.UnExistedTopicException;
import work.slhaf.agent.core.memory.node.MemoryNode;
import work.slhaf.agent.core.memory.node.TopicNode;
import work.slhaf.agent.core.memory.pojo.MemoryResult;
import work.slhaf.agent.modules.memory.MemoryGraph;
import work.slhaf.agent.modules.memory.pojo.MemorySlice;
import work.slhaf.agent.modules.memory.exception.UnExistedTopicException;
import work.slhaf.agent.modules.memory.node.MemoryNode;
import work.slhaf.agent.modules.memory.node.TopicNode;
import work.slhaf.agent.modules.memory.pojo.MemoryResult;
import java.io.IOException;
import java.time.LocalDate;