[changes]

This commit is contained in:
lanceyq
2026-03-05 15:02:01 +08:00
parent 218637e81d
commit 60a95f6556
2 changed files with 1 additions and 7 deletions

View File

@@ -4,10 +4,8 @@ Cache 缓存模块
提供各种缓存功能的统一入口 提供各种缓存功能的统一入口
注意隐性记忆和情绪建议已迁移到数据库存储不再使用Redis缓存 注意隐性记忆和情绪建议已迁移到数据库存储不再使用Redis缓存
""" """
from .memory import EmotionMemoryCache, ImplicitMemoryCache, InterestMemoryCache from .memory import InterestMemoryCache
__all__ = [ __all__ = [
"EmotionMemoryCache",
"ImplicitMemoryCache",
"InterestMemoryCache", "InterestMemoryCache",
] ]

View File

@@ -4,12 +4,8 @@ Memory 缓存模块
提供记忆系统相关的缓存功能 提供记忆系统相关的缓存功能
注意隐性记忆和情绪建议已迁移到数据库存储不再使用Redis缓存 注意隐性记忆和情绪建议已迁移到数据库存储不再使用Redis缓存
""" """
from .emotion_memory import EmotionMemoryCache
from .implicit_memory import ImplicitMemoryCache
from .interest_memory import InterestMemoryCache from .interest_memory import InterestMemoryCache
__all__ = [ __all__ = [
"EmotionMemoryCache",
"ImplicitMemoryCache",
"InterestMemoryCache", "InterestMemoryCache",
] ]