Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion bash-py/supermemory_bash/_volume.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion bash/src/volume.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Loading