feat: raise default query limits to 10000 (effectively unlimited)
With 375 memories and 1M context window, low limits just hide results. Agents can still pass a smaller limit when they want fewer results. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
43a5513f6c
commit
d03a77ac36
3 changed files with 6 additions and 6 deletions
|
|
@ -20,7 +20,7 @@ class MemoryRecall(BaseModel):
|
|||
expanded_query: str = ""
|
||||
category: Optional[str] = None
|
||||
sort_by: Literal["importance", "relevance", "recency"] = "importance"
|
||||
limit: int = Field(default=10, ge=1, le=500)
|
||||
limit: int = Field(default=10000, ge=1, le=10000)
|
||||
|
||||
|
||||
class MemoryResponse(BaseModel):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue