Skip to content

Commit 83a7c34

Browse files
authored
feat: fix mode (#400)
1 parent ce34bd1 commit 83a7c34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/memos/api/product_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ class APISearchRequest(BaseRequest):
171171
query: str = Field(..., description="Search query")
172172
user_id: str = Field(None, description="User ID")
173173
mem_cube_id: str | None = Field(None, description="Cube ID to search in")
174-
mode: SearchMode = Field(SearchMode.FINE, description="search mode: fast, fine, or mixture")
174+
mode: SearchMode = Field(SearchMode.FAST, description="search mode: fast, fine, or mixture")
175175
internet_search: bool = Field(False, description="Whether to use internet search")
176176
moscube: bool = Field(False, description="Whether to use MemOSCube")
177177
top_k: int = Field(10, description="Number of results to return")

0 commit comments

Comments
 (0)