From 1b62497edbc7fd1283c8c7409e20d89d779fb2be Mon Sep 17 00:00:00 2001 From: Taylor McNeil Date: Wed, 29 Jul 2026 16:12:51 -0400 Subject: [PATCH] adding mongoDB link for crewAI implementation --- docs/edge/en/concepts/memory.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/edge/en/concepts/memory.mdx b/docs/edge/en/concepts/memory.mdx index 349546d1c0..60feece61c 100644 --- a/docs/edge/en/concepts/memory.mdx +++ b/docs/edge/en/concepts/memory.mdx @@ -762,7 +762,7 @@ memory = Memory( ## Storage Backend - **Default**: LanceDB, stored under `./.crewai/memory` (or `$CREWAI_STORAGE_DIR/memory` if the env var is set, or the path you pass as `storage="path/to/dir"`). -- **Custom backend**: Implement the `StorageBackend` protocol (see `crewai.memory.storage.backend`) and pass an instance to `Memory(storage=your_backend)`. +- **Custom backend**: Implement the `StorageBackend` protocol (see `crewai.memory.storage.backend`) and pass an instance to `Memory(storage=your_backend)`. For production deployments, you can use the MongoDB StorageBackend implementation for CrewAI Memory. See the [MongoDB implementation tutorial](https://www.mongodb.com/docs/atlas/ai-integrations/crewai/agent-memory/) for setup details. ## Discovery