Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
heyitsaamir committed Jan 10, 2025
1 parent 9fc2b50 commit 2c78561
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/memory_module/core/memory_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ async def retrieve_memories(
config: RetrievalConfig,
) -> List[Memory]:
return await self._retrieve_memories(
user_id, config.query, [config.topic] if config.topic else None, config.limit
user_id, config.query, config.topics if config.topics else None, config.limit
)

async def _retrieve_memories(
Expand Down

0 comments on commit 2c78561

Please sign in to comment.