mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-02-08 01:02:22 +08:00
11 lines
244 B
Python
11 lines
244 B
Python
"""
|
|
Memory tools for Agent
|
|
|
|
Provides memory_search and memory_get tools
|
|
"""
|
|
|
|
from agent.tools.memory.memory_search import MemorySearchTool
|
|
from agent.tools.memory.memory_get import MemoryGetTool
|
|
|
|
__all__ = ['MemorySearchTool', 'MemoryGetTool']
|