Improve vector store API#1201
Merged
Merged
Conversation
Closed
26 tasks
Contributor
Author
0a10178 to
2c018f6
Compare
2c018f6 to
d208d4b
Compare
26 tasks
b3b2a57 to
cf599b4
Compare
malatewang
requested changes
Mar 17, 2026
| async def upsert( | ||
| self, | ||
| *, | ||
| partition_key: str, |
Contributor
There was a problem hiding this comment.
Why do we need partition here?
| ) -> None: | ||
| """ | ||
| Create a collection in the vector store. | ||
| Create a logical collection in the vector store and return a handle to it. |
Contributor
There was a problem hiding this comment.
The return type should be Collection
Contributor
Author
There was a problem hiding this comment.
In open_or_create_collection.
|
|
||
| @abstractmethod | ||
| async def delete_collection(self, collection_name: str) -> None: | ||
| async def open_collection(self, *, namespace: str, name: str) -> Collection: |
Contributor
There was a problem hiding this comment.
return type should be Collection | None
Contributor
Author
|
Before merge, need to check that (de)serialization is deterministic. |
Contributor
Author
Tests work now on Qdrant implementation branch. |
malatewang
approved these changes
Mar 18, 2026
d69686f to
69fa649
Compare
26 tasks
Signed-off-by: Edwin Yu <[email protected]>
Signed-off-by: Edwin Yu <[email protected]>
Signed-off-by: Edwin Yu <[email protected]>
Signed-off-by: Edwin Yu <[email protected]>
This reverts commit 028eed0.
This reverts commit ba3dcb3.
Signed-off-by: Edwin Yu <[email protected]>
Signed-off-by: Edwin Yu <[email protected]>
This reverts commit 08ecc96.
Signed-off-by: Edwin Yu <[email protected]>
Signed-off-by: Edwin Yu <[email protected]>
Signed-off-by: Edwin Yu <[email protected]>
Signed-off-by: Edwin Yu <[email protected]>
Signed-off-by: Edwin Yu <[email protected]>
Signed-off-by: Edwin Yu <[email protected]>
Signed-off-by: Edwin Yu <[email protected]>
Signed-off-by: Edwin Yu <[email protected]>
Signed-off-by: Edwin Yu <[email protected]>
Signed-off-by: Edwin Yu <[email protected]>
Signed-off-by: Edwin Yu <[email protected]>
Signed-off-by: Edwin Yu <[email protected]>
Signed-off-by: Edwin Yu <[email protected]>
Signed-off-by: Edwin Yu <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation:
Changes:
Details:
Naming constraints determined by lowest common denominators for support.