-
Notifications
You must be signed in to change notification settings - Fork 2k
Upgrade pinecone java client to 2.1.0 #1501
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Thanks! Will review post 1.0 M3 as this will bring in a new version of the protobuf library and could conflict with milvus and others that use it since typically version mismatches in this library are breaking changes. |
Pinecone 2.1.0 VectorStore based on code below - code : https://github.com/spring-projects/spring-ai/blob/8703e994893f7e20f2df1fc5d204462c1e6d2769/vector-stores/spring-ai-pinecone-store/src/main/java/org/springframework/ai/vectorstore/PineconeVectorStore.java - related PR : spring-projects/spring-ai#1501
| this.namespace = builder.namespace; | ||
| this.contentFieldName = builder.contentFieldName; | ||
| this.distanceMetadataFieldName = builder.distanceMetadataFieldName; | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jiwhiz Thanks for the PR. Could you explain the reasoning for this change - removal of the some of the existing properties, client configuration and the usage of Index as part of this client version update?
|
it would be great to use 3.1.0 instead. Client can be configured to use a local emulator for testing. |
|
BTW, Testcontainers provides a |
Pinecone Java Client released 2.1.0, and currently spring-ai still uses 0.8.0 version.