16 lines
410 B
Python
16 lines
410 B
Python
|
|
"""User memory management - JSON/Redis with in-memory cache."""
|
||
|
|
|
||
|
|
# Renamed from memoire.py for consistency (English naming)
|
||
|
|
from .memoire import ( # noqa: F401
|
||
|
|
add_interaction,
|
||
|
|
build_context_for_model,
|
||
|
|
flush_all,
|
||
|
|
MEMORY_DIR,
|
||
|
|
set_llm_manager,
|
||
|
|
delete_user_memory,
|
||
|
|
purge_old_memories,
|
||
|
|
get_metrics,
|
||
|
|
_extractive_summary,
|
||
|
|
load_user_memory_async,
|
||
|
|
save_user_memory_async,
|
||
|
|
)
|