Migrate vector store docs from Microsoft.SemanticKernel.Connectors.* to CommunityToolkit.VectorData.*#54993
Merged
Merged
Conversation
Copilot created this pull request from a session on behalf of
adamsitnik
July 22, 2026 13:33
View session
adamsitnik
reviewed
Jul 22, 2026
adamsitnik
left a comment
Member
There was a problem hiding this comment.
@copilot address my feedback
Contributor
Author
Addressed all feedback in the latest commit:
|
adamsitnik
reviewed
Jul 22, 2026
adamsitnik
left a comment
Member
There was a problem hiding this comment.
@copilot address my feedback
adamsitnik
enabled auto-merge (squash)
July 22, 2026 13:55
gewarren
approved these changes
Jul 22, 2026
| ``` | ||
|
|
||
| For production scenarios, replace `Microsoft.SemanticKernel.Connectors.InMemory` with the provider for your database. For available providers, see [Out-of-the-box Vector Store providers](/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/). (Despite the inclusion of "SemanticKernel" in the provider package names, these providers have nothing to do with Semantic Kernel and are usable anywhere in .NET, including Agent Framework.) | ||
| For production scenarios, replace `CommunityToolkit.VectorData.InMemory` with the provider for your database. For available providers, see [Out-of-the-box Vector Store providers](/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/). |
Collaborator
There was a problem hiding this comment.
Should/can we replace the link?
Member
There was a problem hiding this comment.
I am trying to get this particular document updated in MicrosoftDocs/semantic-kernel-docs#429, but I agree that in the long term we should provide our own list (it would not contain python-specific or deprecated connectors)
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.
Migrates all
docs/ai/vector-storesdocumentation and snippets from the deprecatedMicrosoft.SemanticKernel.Connectors.*packages toCommunityToolkit.VectorData.*, and updatesVectorStoreVectorAttributeusage to reflect thatDimensionsis now a mandatory constructor argument (dimensions:) rather than a settable property.Docs
overview.md: Updatedusingimport, package links, and[VectorStoreVector(Dimensions:)]example. Removed the now-invalid[!NOTE]explaining why "SemanticKernel" appeared in package names.define-your-data-model.md: Updated all inline code examples and the parameter table —Dimensionsproperty xref replaced withdimensionsconstructor argument entry.manage-data.md,vector-search.md: FixedDimensions:→dimensions:in data model examples.how-to/use-vector-stores.md: Updated install command and removed SK disclaimer.how-to/build-vector-search-app.md: Updated package names and descriptions in both OpenAI and Azure OpenAI pivots.how-to/vector-store-data-ingestion.md: Updated Redis provider link.Snippets
using Microsoft.SemanticKernel.Connectors.*imports replaced withCommunityToolkit.VectorData.*equivalents (InMemory, Qdrant, Redis)..csprojpackage references updated toCommunityToolkit.VectorData.*v1.0.0/1.*.Internal previews