Fixes minor typo in memory docs

This commit is contained in:
Vidit-Ostwal
2025-03-28 22:39:17 +05:30
parent 77fa1b18c7
commit e290064ecc

View File

@@ -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.
},
)
```