We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb30242 commit dfad9d3Copy full SHA for dfad9d3
agent_memory_server/filters.py
@@ -18,8 +18,6 @@ def validate_filters(self) -> Self:
18
raise ValueError("eq and ne cannot both be set")
19
if self.any is not None and self.all is not None:
20
raise ValueError("any and all cannot both be set")
21
- if self.any is not None and self.all is not None:
22
- raise ValueError("any and all cannot both be set")
23
if self.all is not None and len(self.all) == 0:
24
raise ValueError("all cannot be an empty list")
25
if self.any is not None and len(self.any) == 0:
0 commit comments