1
0

[loop-cycle-54] refactor: consolidate three memory stores into single table (#37) (#223)

This commit is contained in:
2026-03-15 13:33:24 -04:00
parent 4a68f6cb8b
commit b4cb3e9975
14 changed files with 1425 additions and 1084 deletions

View File

@@ -305,7 +305,7 @@ async def lifespan(app: FastAPI):
# Auto-prune old vector store memories on startup
if settings.memory_prune_days > 0:
try:
from timmy.memory.vector_store import prune_memories
from timmy.memory_system import prune_memories
pruned = prune_memories(
older_than_days=settings.memory_prune_days,