| """HelloAgents记忆系统模块 |
| |
| 按照第8章架构设计的分层记忆系统: |
| - Memory Core Layer: 记忆核心层 |
| - Memory Types Layer: 记忆类型层 |
| - Storage Layer: 存储层 |
| - Integration Layer: 集成层 |
| """ |
|
|
| |
| from .manager import MemoryManager |
|
|
| |
| from .types.working import WorkingMemory |
| from .types.episodic import EpisodicMemory |
| from .types.semantic import SemanticMemory |
| from .types.perceptual import PerceptualMemory |
|
|
| |
| from .storage.document_store import DocumentStore, SQLiteDocumentStore |
|
|
| |
| from .base import MemoryItem, MemoryConfig, BaseMemory |
|
|
| __all__ = [ |
| |
| "MemoryManager", |
|
|
| |
| "WorkingMemory", |
| "EpisodicMemory", |
| "SemanticMemory", |
| "PerceptualMemory", |
|
|
| |
| "DocumentStore", |
| "SQLiteDocumentStore", |
|
|
| |
| "MemoryItem", |
| "MemoryConfig", |
| "BaseMemory" |
| ] |
|
|