Migrate vector store connector docs from Microsoft.SemanticKernel.Connectors.* to CommunityToolkit.VectorData.*#429
Conversation
…rData.* - Replace Microsoft.SemanticKernel.Connectors.* with CommunityToolkit.VectorData.* for all vector store connectors - Update using directives for connector-specific namespaces - Remove unused 'using Microsoft.SemanticKernel;' from IServiceCollection-only examples - Update text descriptions from 'provided by Semantic Kernel' to 'provided by the connector package' - Update supported-languages.md vector store connector package table
…le connector - elasticsearch-connector.md: restore `using Microsoft.SemanticKernel;` in both IServiceCollection blocks - mongodb-connector.md: change CommunityToolkit.VectorData.MongoDB to MongoDB.VectorData (package and namespace) - redis-connector.md: add `using Microsoft.Extensions.DependencyInjection;` to simple IServiceCollection block - volatile-connector.md: update C# section to use CommunityToolkit.VectorData.InMemory (InMemoryVectorStore, AddInMemoryVectorStore, VectorStoreCollection) - supported-languages.md: change MongoDB package to MongoDB.VectorData
|
Learn Build status updates of commit 4cdb692: ✅ Validation status: passed
For more details, please refer to the build report. |
|
Learn Build status updates of commit e86996a: ✅ Validation status: passed
For more details, please refer to the build report. |
|
Learn Build status updates of commit 3c6b050: ✅ Validation status: passed
For more details, please refer to the build report. |
…ctor, update Pinecone connector - Remove --prerelease flag from all CommunityToolkit.VectorData.* package installs (13 files) - Revert mongodb-connector.md to pre-PR state (MongoDB.VectorData package not yet released) - Remove .NET connector sections from pinecone-connector.md (Pinecone archived their .NET SDK) - Remove Pinecone from .NET package list in supported-languages.md
|
Learn Build status updates of commit 79733d7: ✅ Validation status: passed
For more details, please refer to the build report. |
Co-authored-by: Adam Sitnik <adam.sitnik@gmail.com>
|
Learn Build status updates of commit 12a788e: ✅ Validation status: passed
For more details, please refer to the build report. |
| "metadata": { "hotel_name": "Hotel Happy", "hotel_description": "A place where everyone can be happy." } | ||
| } | ||
| ``` | ||
| The .NET SDK for Pinecone has been archived and is no longer supported. The Pinecone connector is not available for C#. |
There was a problem hiding this comment.
to other reviewers: this is important, Pinecone has archived their .NET SDK repo (https://github.com/pinecone-io/pinecone-dotnet-client) so we no longer support it
|
|
||
| ```dotnetcli | ||
| dotnet add package Microsoft.SemanticKernel.Connectors.SqliteVec --prerelease | ||
| dotnet add package CommunityToolkit.VectorData.SqliteVec --prerelease |
There was a problem hiding this comment.
to other reviewers: this is the only package that is still in pre-release mode. It's because it has preview dependency and the sqlite plugin itself we use is still in alpha
Vector store connectors have moved from
Microsoft.SemanticKernel.Connectors.*packages to community-maintainedCommunityToolkit.VectorData.*packages. Updates all C# documentation across the vector store connector section to reflect this.