diff --git a/docs/concepts/memory.mdx b/docs/concepts/memory.mdx index 14153f2b0..f3f1812c2 100644 --- a/docs/concepts/memory.mdx +++ b/docs/concepts/memory.mdx @@ -189,7 +189,7 @@ crew = Crew( memory_config={ "provider": "mem0", "config": {"user_id": "john"}, - "user_memory : {}" #Set user_memory explicitly to a dictionary, we are working on this issue. + "user_memory" : {} #Set user_memory explicitly to a dictionary, we are working on this issue. }, ) ``` @@ -208,7 +208,7 @@ crew = Crew( memory_config={ "provider": "mem0", "config": {"user_id": "john", "org_id": "my_org_id", "project_id": "my_project_id"}, - "user_memory : {}" #Set user_memory explicitly to a dictionary, we are working on this issue. + "user_memory" : {} #Set user_memory explicitly to a dictionary, we are working on this issue. }, ) ``` @@ -269,7 +269,7 @@ crew = Crew( memory_config={ "provider": "mem0", "config": {"user_id": "john", 'local_mem0_config': config}, - "user_memory : {}" #Set user_memory explicitly to a dictionary, we are working on this issue. + "user_memory" : {} #Set user_memory explicitly to a dictionary, we are working on this issue. }, ) ```