Skip to content

Commit bca838f

Browse files
fix: Make groupIds option in search query dto (#154)
* fix: Make groupIds option in search query dto * chore: Format
1 parent 09b16a2 commit bca838f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

server/graph_service/dto/retrieve.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66

77

88
class SearchQuery(BaseModel):
9-
group_ids: list[str] = Field(description='The group ids for the memories to search')
9+
group_ids: list[str] | None = Field(
10+
None, description='The group ids for the memories to search'
11+
)
1012
query: str
1113
max_facts: int = Field(default=10, description='The maximum number of facts to retrieve')
1214

0 commit comments

Comments
 (0)