12 lines
250 B
Python
12 lines
250 B
Python
"""
|
||
Memory 缓存模块
|
||
|
||
提供记忆系统相关的缓存功能
|
||
注意:隐性记忆和情绪建议已迁移到数据库存储,不再使用Redis缓存
|
||
"""
|
||
from .interest_memory import InterestMemoryCache
|
||
|
||
__all__ = [
|
||
"InterestMemoryCache",
|
||
]
|