feat: personal ai agent framework

This commit is contained in:
saboteur7
2026-01-30 09:53:46 +08:00
parent 25cf6823d0
commit bb850bb6c5
62 changed files with 7675 additions and 275 deletions

View File

@@ -0,0 +1,10 @@
"""
Memory tools for AgentMesh
Provides memory_search and memory_get tools for agents
"""
from agent.memory.tools.memory_search import MemorySearchTool
from agent.memory.tools.memory_get import MemoryGetTool
__all__ = ['MemorySearchTool', 'MemoryGetTool']