External memory `Mem0` config

Hi. We are using Mem0 external memory provider.
We are trying to enable short-term memory for a user session by setting run_id:

memory=True,
            external_memory=ExternalMemory(
                embedder_config={
                    "provider": "mem0",
                    "config": {"user_id": self.user_id, "run_id": self.run_id},
                }  # you can provide an entire Mem0 configuration
            ),

But it appears that on the Mem0 dashboard, we don’t have run_id set. Is that argument supported?

There might be an issue or bug because run_id is not part of the config in the code crewAI/src/crewai/memory/storage/mem0_storage.py at main · crewAIInc/crewAI · GitHub

This might need more investigating as a potential bug.

1 Like

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.