diff --git a/bash-py/supermemory_bash/_volume.py b/bash-py/supermemory_bash/_volume.py index 613b3cf..9fa3f5e 100644 --- a/bash-py/supermemory_bash/_volume.py +++ b/bash-py/supermemory_bash/_volume.py @@ -601,7 +601,6 @@ async def search(self, q: str, filepath: str | None = None) -> SearchResp: "containerTag": self.container_tag, "searchMode": "hybrid", "include": {"documents": True}, - "limit": 50, } if filepath is not None: body["filepath"] = filepath diff --git a/bash/src/volume.ts b/bash/src/volume.ts index 255299f..23dacd9 100644 --- a/bash/src/volume.ts +++ b/bash/src/volume.ts @@ -578,7 +578,6 @@ export class SupermemoryVolume { containerTag: this.containerTag, searchMode: "hybrid", include: { documents: true }, - limit: 50, }; if (params.filepath !== undefined) body.filepath = params.filepath; resp = await this.client.search.memories(body);