Files
awesomekoder e2dc13fb21 fix: rename loop variable to avoid shadowing Memory object
Fixes #449

The loop variable 'memory' in the memory iteration was shadowing the
Memory object from mem0, causing 'AttributeError: dict object has no
attribute add' when memory.add() was called later.

Renamed to 'mem' to match the pattern already used in other parts of
the codebase.

Affected files:
- ai_travel_agent_memory/travel_agent_memory.py
- multi_llm_memory/multi_llm_memory.py
2026-01-31 20:14:28 -08:00
..