From 84ea019eb3f9436a23a31f5e3db6964d6ad972b9 Mon Sep 17 00:00:00 2001 From: Prasanna A P <106952318+Prasanna721@users.noreply.github.com> Date: Mon, 18 May 2026 19:08:20 -0700 Subject: [PATCH] drop hardcoded grep limit --- bash-py/supermemory_bash/_volume.py | 1 - bash/src/volume.ts | 1 - 2 files changed, 2 deletions(-) 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);