Skip to content

Commit eae0eb2

Browse files
call storage.search in user context search instead of memory.search (#1692)
Co-authored-by: Eduardo Chiarotti <dudumelgaco@hotmail.com>
1 parent 6fb6ef6 commit eae0eb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/crewai/memory/user/user_memory.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def search(
3737
limit: int = 3,
3838
score_threshold: float = 0.35,
3939
):
40-
results = super().search(
40+
results = self.storage.search(
4141
query=query,
4242
limit=limit,
4343
score_threshold=score_threshold,

0 commit comments

Comments
 (0)