mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-14 18:48:29 +00:00
- Replace unsafe del statements with safe .pop() calls - Add comprehensive tests for missing parameter scenarios - Fixes issue #3266 where KeyError occurred with local_mem0_config The issue occurred when using Memory (OSS) with local_mem0_config where parameters like 'metadata', 'version', 'output_format' might not be present in the params dictionary. Using .pop() with None default safely removes parameters without raising KeyError. Co-Authored-By: João <joao@crewai.com>