-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
Pinecone memory connector #1065
Conversation
### Motivation and Context <!-- Thank you for your contribution to the semantic-kernel repo! Please help reviewers and future users, providing the following information: 1. Why is this change required? 2. What problem does it solve? 3. What scenario does it contribute to? 4. If it fixes an open issue, please link to the issue here. --> ### Description <!-- Describe your changes, the overall approach, the underlying design. These notes will help understanding how your code works. Thanks! --> ### Contribution Checklist <!-- Before submitting this PR, please make sure: --> - [x] The code builds clean without any errors or warnings - [x] The PR follows SK Contribution Guidelines (https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md) - [x] The code follows the .NET coding conventions (https://learn.microsoft.com/dotnet/csharp/fundamentals/coding-style/coding-conventions) verified with `dotnet format` - [x] All unit tests pass, and I have added new tests where possible - [x] I didn't break anyone 😄 --------- Co-authored-by: tech <tech@chancetheapp.com> Co-authored-by: Devis Lucato <dluc@users.noreply.github.com> Co-authored-by: Dmytro Struk <13853051+dmytrostruk@users.noreply.github.com> Co-authored-by: Adrian Bonar <56417140+adrianwyatt@users.noreply.github.com> Co-authored-by: Shawn Callegari <36091529+shawncal@users.noreply.github.com> Co-authored-by: Abby Harrison <54643756+awharrison-28@users.noreply.github.com>
@dmytrostruk I believe the Pinecone example from the Kernel-Syntax-Examples wasn't added to the Program.cs file |
@shawncal Should we add Pinecone example to KernelSyntaxExamples Program.cs? I think it was added in original PR. |
Yes, absolutely! Must have been a bad merge (that file sees a lot of conflicts, growth). |
Added back. Good catch! |
Pinecone vector database implementation Original PR: microsoft#770 --------- Co-authored-by: Kevdome3000 <kbassjr@gmail.com> Co-authored-by: tech <tech@chancetheapp.com> Co-authored-by: Shawn Callegari <36091529+shawncal@users.noreply.github.com> Co-authored-by: Abby Harrison <54643756+awharrison-28@users.noreply.github.com>
Pinecone vector database implementation Original PR: microsoft#770 --------- Co-authored-by: Kevdome3000 <kbassjr@gmail.com> Co-authored-by: tech <tech@chancetheapp.com> Co-authored-by: Shawn Callegari <36091529+shawncal@users.noreply.github.com> Co-authored-by: Abby Harrison <54643756+awharrison-28@users.noreply.github.com>
Pinecone vector database implementation Original PR: microsoft#770 --------- Co-authored-by: Kevdome3000 <kbassjr@gmail.com> Co-authored-by: tech <tech@chancetheapp.com> Co-authored-by: Shawn Callegari <36091529+shawncal@users.noreply.github.com> Co-authored-by: Abby Harrison <54643756+awharrison-28@users.noreply.github.com>
Motivation and Context
Pinecone vector database implementation: https://docs.pinecone.io/docs/overview.
Original PR: #770
Description
Implementation logic and structure is similar to already existing Qdrant connector.
Contribution Checklist
dotnet format