Skip to content
Snippets Groups Projects
Unverified Commit f0d88299 authored by Bogdan Buduroiu's avatar Bogdan Buduroiu
Browse files

fix: use namespace in list

parent 2805a33e
No related branches found
No related tags found
No related merge requests found
...@@ -364,7 +364,7 @@ class PineconeIndex(BaseIndex): ...@@ -364,7 +364,7 @@ class PineconeIndex(BaseIndex):
all_vector_ids = [] all_vector_ids = []
metadata = [] metadata = []
for ids in self.index.list(prefix=prefix): for ids in self.index.list(prefix=prefix, namespace=self.namespace):
all_vector_ids.extend(ids) all_vector_ids.extend(ids)
if include_metadata: if include_metadata:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment