From daa1188b6639915ec023f071c7d4ed6669e6b6ca Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 20 Jul 2026 15:11:55 +0000 Subject: [PATCH 1/8] Update vector store connector package names to CommunityToolkit.VectorData.* - 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 --- .../embedding-generation.md | 7 +++---- .../how-to/vector-store-data-ingestion.md | 4 ++-- .../vector-store-connectors/hybrid-search.md | 4 ++-- .../concepts/vector-store-connectors/index.md | 4 ++-- .../azure-ai-search-connector.md | 10 ++++------ .../azure-cosmosdb-mongodb-connector.md | 10 ++++------ .../azure-cosmosdb-nosql-connector.md | 12 +++++------- .../couchbase-connector.md | 2 +- .../elasticsearch-connector.md | 4 +--- .../inmemory-connector.md | 9 ++++----- .../mongodb-connector.md | 8 ++++---- .../oracle-connector.md | 2 +- .../pinecone-connector.md | 11 +++++------ .../postgres-connector.md | 16 +++++++--------- .../qdrant-connector.md | 11 +++++------ .../redis-connector.md | 17 +++++++---------- .../out-of-the-box-connectors/sql-connector.md | 9 ++++----- .../sqlite-connector.md | 9 ++++----- .../volatile-connector.md | 4 +--- .../weaviate-connector.md | 8 ++++---- .../vector-store-connectors/vector-search.md | 4 ++-- .../get-started/supported-languages.md | 18 +++++++++--------- 22 files changed, 81 insertions(+), 102 deletions(-) diff --git a/semantic-kernel/concepts/vector-store-connectors/embedding-generation.md b/semantic-kernel/concepts/vector-store-connectors/embedding-generation.md index e39074e16..69d48e1ca 100644 --- a/semantic-kernel/concepts/vector-store-connectors/embedding-generation.md +++ b/semantic-kernel/concepts/vector-store-connectors/embedding-generation.md @@ -56,7 +56,7 @@ Embedding generators implementing the `Microsoft.Extensions.AI` abstractions are ```csharp using Microsoft.Extensions.AI; - using Microsoft.SemanticKernel.Connectors.Qdrant; + using CommunityToolkit.VectorData.Qdrant; using OpenAI; using Qdrant.Client; @@ -78,7 +78,7 @@ Embedding generators implementing the `Microsoft.Extensions.AI` abstractions are ```csharp using Microsoft.Extensions.AI; - using Microsoft.SemanticKernel.Connectors.Qdrant; + using CommunityToolkit.VectorData.Qdrant; using OpenAI; using Qdrant.Client; @@ -103,7 +103,7 @@ Embedding generators implementing the `Microsoft.Extensions.AI` abstractions are ```csharp using Microsoft.Extensions.AI; using Microsoft.Extensions.VectorData; - using Microsoft.SemanticKernel.Connectors.Qdrant; + using CommunityToolkit.VectorData.Qdrant; using OpenAI; using Qdrant.Client; @@ -155,7 +155,6 @@ Embedding generators implementing the `Microsoft.Extensions.AI` abstractions are The following example demonstrates how to use the embedding generator to automatically generate vectors during both upsert and search operations. This approach simplifies workflows by eliminating the need to precompute embeddings manually. ```csharp - // The data model internal class FinanceInfo { diff --git a/semantic-kernel/concepts/vector-store-connectors/how-to/vector-store-data-ingestion.md b/semantic-kernel/concepts/vector-store-connectors/how-to/vector-store-data-ingestion.md index b95f203a5..5c90795af 100644 --- a/semantic-kernel/concepts/vector-store-connectors/how-to/vector-store-data-ingestion.md +++ b/semantic-kernel/concepts/vector-store-connectors/how-to/vector-store-data-ingestion.md @@ -57,14 +57,14 @@ The rest of these instructions will assume that you are using this container usi ## Create your project -Create a new project and add nuget package references for the Redis connector from Semantic Kernel, the open xml package to read the word +Create a new project and add NuGet package references for the Redis connector, the open xml package to read the word document with and the OpenAI connector from Semantic Kernel for generating embeddings. ```dotnetcli dotnet new console --framework net8.0 --name SKVectorIngest cd SKVectorIngest dotnet add package Microsoft.SemanticKernel.Connectors.AzureOpenAI -dotnet add package Microsoft.SemanticKernel.Connectors.Redis --prerelease +dotnet add package CommunityToolkit.VectorData.Redis --prerelease dotnet add package DocumentFormat.OpenXml ``` diff --git a/semantic-kernel/concepts/vector-store-connectors/hybrid-search.md b/semantic-kernel/concepts/vector-store-connectors/hybrid-search.md index 0c771aca8..838a9b52a 100644 --- a/semantic-kernel/concepts/vector-store-connectors/hybrid-search.md +++ b/semantic-kernel/concepts/vector-store-connectors/hybrid-search.md @@ -93,7 +93,7 @@ Only connectors for databases that currently support vector plus keyword hybrid Assuming you have a collection that already contains data, you can easily do a hybrid search on it. Here is an example using Qdrant. ```csharp -using Microsoft.SemanticKernel.Connectors.Qdrant; +using CommunityToolkit.VectorData.Qdrant; using Microsoft.Extensions.VectorData; using Qdrant.Client; @@ -150,7 +150,7 @@ If no `AdditionalProperty` is provided and the data model contains only one full If the data model contains no full text search property or multiple full text search properties and `AdditionalProperty` is not provided, the search method will throw. ```csharp -using Microsoft.SemanticKernel.Connectors.Qdrant; +using CommunityToolkit.VectorData.Qdrant; using Microsoft.Extensions.VectorData; using Qdrant.Client; diff --git a/semantic-kernel/concepts/vector-store-connectors/index.md b/semantic-kernel/concepts/vector-store-connectors/index.md index 4da14b746..71b965e12 100644 --- a/semantic-kernel/concepts/vector-store-connectors/index.md +++ b/semantic-kernel/concepts/vector-store-connectors/index.md @@ -258,7 +258,7 @@ Once you have defined your data model, the next step is to create a VectorStore In this example, we'll use Qdrant. You will therefore need to import the Qdrant nuget package. ```dotnetcli -dotnet add package Microsoft.SemanticKernel.Connectors.Qdrant --prerelease +dotnet add package CommunityToolkit.VectorData.Qdrant --prerelease ``` If you want to run Qdrant locally using Docker, use the following command to start the Qdrant container @@ -275,7 +275,7 @@ Since databases support many different types of keys and records, we allow you t In our case, the type of record will be the `Hotel` class we already defined, and the type of key will be `ulong`, since the `HotelId` property is a `ulong` and Qdrant only supports `Guid` or `ulong` keys. ```csharp -using Microsoft.SemanticKernel.Connectors.Qdrant; +using CommunityToolkit.VectorData.Qdrant; using Qdrant.Client; // Create a Qdrant VectorStore object diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-ai-search-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-ai-search-connector.md index 4d31d2092..e6af86d09 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-ai-search-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-ai-search-connector.md @@ -100,10 +100,10 @@ Notable Azure AI Search connector functionality limitations. Add the Azure AI Search Vector Store connector NuGet package to your project. ```dotnetcli -dotnet add package Microsoft.SemanticKernel.Connectors.AzureAISearch --prerelease +dotnet add package CommunityToolkit.VectorData.AzureAISearch --prerelease ``` -You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by Semantic Kernel. +You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. ```csharp using Azure; @@ -120,7 +120,6 @@ kernelBuilder.Services ```csharp using Azure; using Microsoft.Extensions.DependencyInjection; -using Microsoft.SemanticKernel; // Using IServiceCollection with ASP.NET Core. var builder = WebApplication.CreateBuilder(args); @@ -148,7 +147,6 @@ kernelBuilder.Services.AddAzureAISearchVectorStore(); using Azure; using Azure.Search.Documents.Indexes; using Microsoft.Extensions.DependencyInjection; -using Microsoft.SemanticKernel; // Using IServiceCollection with ASP.NET Core. var builder = WebApplication.CreateBuilder(args); @@ -164,7 +162,7 @@ You can construct an Azure AI Search Vector Store instance directly. ```csharp using Azure; using Azure.Search.Documents.Indexes; -using Microsoft.SemanticKernel.Connectors.AzureAISearch; +using CommunityToolkit.VectorData.AzureAISearch; var vectorStore = new AzureAISearchVectorStore( new SearchIndexClient( @@ -177,7 +175,7 @@ It is possible to construct a direct reference to a named collection. ```csharp using Azure; using Azure.Search.Documents.Indexes; -using Microsoft.SemanticKernel.Connectors.AzureAISearch; +using CommunityToolkit.VectorData.AzureAISearch; var collection = new AzureAISearchCollection( new SearchIndexClient(new Uri(azureAISearchUri), new AzureKeyCredential(secret)), diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-cosmosdb-mongodb-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-cosmosdb-mongodb-connector.md index 749d4290b..2a443ad6c 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-cosmosdb-mongodb-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-cosmosdb-mongodb-connector.md @@ -82,10 +82,10 @@ This connector is compatible with Azure Cosmos DB MongoDB (vCore) and is *not* d Add the Azure CosmosDB MongoDB Vector Store connector NuGet package to your project. ```dotnetcli -dotnet add package Microsoft.SemanticKernel.Connectors.CosmosMongoDB --prerelease +dotnet add package CommunityToolkit.VectorData.CosmosMongoDB --prerelease ``` -You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by Semantic Kernel. +You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. ```csharp using Microsoft.Extensions.DependencyInjection; @@ -100,7 +100,6 @@ kernelBuilder.Services ```csharp using Microsoft.Extensions.DependencyInjection; -using Microsoft.SemanticKernel; // Using IServiceCollection with ASP.NET Core. var builder = WebApplication.CreateBuilder(args); @@ -127,7 +126,6 @@ kernelBuilder.Services.AddCosmosMongoVectorStore(); ```csharp using Microsoft.Extensions.DependencyInjection; -using Microsoft.SemanticKernel; using MongoDB.Driver; // Using IServiceCollection with ASP.NET Core. @@ -144,7 +142,7 @@ builder.Services.AddCosmosMongoVectorStore(); You can construct an Azure CosmosDB MongoDB Vector Store instance directly. ```csharp -using Microsoft.SemanticKernel.Connectors.CosmosMongoDB; +using CommunityToolkit.VectorData.CosmosMongoDB; using MongoDB.Driver; var mongoClient = new MongoClient(connectionString); @@ -155,7 +153,7 @@ var vectorStore = new CosmosMongoVectorStore(database); It is possible to construct a direct reference to a named collection. ```csharp -using Microsoft.SemanticKernel.Connectors.CosmosMongoDB; +using CommunityToolkit.VectorData.CosmosMongoDB; using MongoDB.Driver; var mongoClient = new MongoClient(connectionString); diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-cosmosdb-nosql-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-cosmosdb-nosql-connector.md index f803e6cd1..56054bc17 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-cosmosdb-nosql-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-cosmosdb-nosql-connector.md @@ -66,10 +66,10 @@ var cosmosClient = new CosmosClient(connectionString, new CosmosClientOptions() Add the Azure CosmosDB NoSQL Vector Store connector NuGet package to your project. ```dotnetcli -dotnet add package Microsoft.SemanticKernel.Connectors.CosmosNoSql --prerelease +dotnet add package CommunityToolkit.VectorData.CosmosNoSql --prerelease ``` -You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by Semantic Kernel. +You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. ```csharp using Microsoft.Extensions.DependencyInjection; @@ -84,7 +84,6 @@ kernelBuilder.Services ```csharp using Microsoft.Extensions.DependencyInjection; -using Microsoft.SemanticKernel; // Using IServiceCollection with ASP.NET Core. var builder = WebApplication.CreateBuilder(args); @@ -120,7 +119,6 @@ kernelBuilder.Services.AddCosmosNoSqlVectorStore(); using System.Text.Json; using Microsoft.Azure.Cosmos; using Microsoft.Extensions.DependencyInjection; -using Microsoft.SemanticKernel; // Using IServiceCollection with ASP.NET Core. var builder = WebApplication.CreateBuilder(args); @@ -144,7 +142,7 @@ You can construct an Azure CosmosDB NoSQL Vector Store instance directly. ```csharp using System.Text.Json; using Microsoft.Azure.Cosmos; -using Microsoft.SemanticKernel.Connectors.CosmosNoSql; +using CommunityToolkit.VectorData.CosmosNoSql; var cosmosClient = new CosmosClient(connectionString, new CosmosClientOptions() { @@ -162,7 +160,7 @@ It is possible to construct a direct reference to a named collection. ```csharp using System.Text.Json; using Microsoft.Azure.Cosmos; -using Microsoft.SemanticKernel.Connectors.CosmosNoSql; +using CommunityToolkit.VectorData.CosmosNoSql; var cosmosClient = new CosmosClient(connectionString, new CosmosClientOptions() { @@ -192,7 +190,7 @@ must be passed to the `CosmosNoSqlCollection` on construction. ```csharp using System.Text.Json; using Microsoft.Azure.Cosmos; -using Microsoft.SemanticKernel.Connectors.CosmosNoSql; +using CommunityToolkit.VectorData.CosmosNoSql; var jsonSerializerOptions = new JsonSerializerOptions { PropertyNamingPolicy = JsonNamingPolicy.SnakeCaseUpper }; diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/couchbase-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/couchbase-connector.md index 33f0c4f51..fb4862298 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/couchbase-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/couchbase-connector.md @@ -43,7 +43,7 @@ Add the Couchbase Vector Store connector NuGet package to your project. dotnet add package CouchbaseConnector.SemanticKernel --prerelease ``` -You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by Semantic Kernel. +You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. ```csharp using Microsoft.SemanticKernel; diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/elasticsearch-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/elasticsearch-connector.md index 77ca5d74c..7c1f91ba3 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/elasticsearch-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/elasticsearch-connector.md @@ -48,7 +48,7 @@ Add the Elasticsearch Vector Store connector NuGet package to your project. dotnet add package Elastic.SemanticKernel.Connectors.Elasticsearch --prerelease ``` -You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by Semantic Kernel. +You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. ```csharp using Microsoft.SemanticKernel; @@ -61,7 +61,6 @@ var kernelBuilder = Kernel ``` ```csharp -using Microsoft.SemanticKernel; using Elastic.Clients.Elasticsearch; // Using IServiceCollection with ASP.NET Core. @@ -85,7 +84,6 @@ kernelBuilder.AddElasticsearchVectorStore(); ```csharp using Microsoft.Extensions.DependencyInjection; -using Microsoft.SemanticKernel; using Elastic.Clients.Elasticsearch; // Using IServiceCollection with ASP.NET Core. diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/inmemory-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/inmemory-connector.md index b175ce213..b2b93c135 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/inmemory-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/inmemory-connector.md @@ -58,10 +58,10 @@ The connector has the following characteristics. Add the Semantic Kernel Core nuget package to your project. ```dotnetcli -dotnet add package Microsoft.SemanticKernel.Connectors.InMemory --prerelease +dotnet add package CommunityToolkit.VectorData.InMemory --prerelease ``` -You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by Semantic Kernel. +You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. ```csharp using Microsoft.Extensions.DependencyInjection; @@ -76,7 +76,6 @@ kernelBuilder.Services ```csharp using Microsoft.Extensions.DependencyInjection; -using Microsoft.SemanticKernel; // Using IServiceCollection with ASP.NET Core. var builder = WebApplication.CreateBuilder(args); @@ -86,7 +85,7 @@ builder.Services.AddInMemoryVectorStore(); You can construct an InMemory Vector Store instance directly. ```csharp -using Microsoft.SemanticKernel.Connectors.InMemory; +using CommunityToolkit.VectorData.InMemory; var vectorStore = new InMemoryVectorStore(); ``` @@ -94,7 +93,7 @@ var vectorStore = new InMemoryVectorStore(); It is possible to construct a direct reference to a named collection. ```csharp -using Microsoft.SemanticKernel.Connectors.InMemory; +using CommunityToolkit.VectorData.InMemory; var collection = new InMemoryCollection("skhotels"); ``` diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/mongodb-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/mongodb-connector.md index 0c12d4e05..5767d39d3 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/mongodb-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/mongodb-connector.md @@ -79,10 +79,10 @@ More info coming soon. Add the MongoDB Vector Store connector NuGet package to your project. ```dotnetcli -dotnet add package Microsoft.SemanticKernel.Connectors.MongoDB --prerelease +dotnet add package CommunityToolkit.VectorData.MongoDB --prerelease ``` -You can add the vector store to the `IServiceCollection` dependency injection container using extension methods provided by Semantic Kernel. +You can add the vector store to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. ```csharp using Microsoft.Extensions.DependencyInjection; @@ -112,7 +112,7 @@ builder.Services.AddMongoVectorStore(); You can construct a MongoDB Vector Store instance directly. ```csharp -using Microsoft.SemanticKernel.Connectors.MongoDB; +using CommunityToolkit.VectorData.MongoDB; using MongoDB.Driver; var mongoClient = new MongoClient(connectionString); @@ -123,7 +123,7 @@ var vectorStore = new MongoVectorStore(database); It is possible to construct a direct reference to a named collection. ```csharp -using Microsoft.SemanticKernel.Connectors.MongoDB; +using CommunityToolkit.VectorData.MongoDB; using MongoDB.Driver; var mongoClient = new MongoClient(connectionString); diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/oracle-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/oracle-connector.md index 0cefce4a0..f0cf0c81b 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/oracle-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/oracle-connector.md @@ -104,7 +104,7 @@ Add the Oracle Database Vector Store connector NuGet package to your project. dotnet add package Oracle.VectorData --prerelease ``` -You can add the vector store to the `IServiceCollection` dependency injection container using extension methods provided by Semantic Kernel. In this case, an instance of the `Oracle.VectorData.OracleVectorStore` class also gets registered with the container. +You can add the vector store to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. In this case, an instance of the `Oracle.VectorData.OracleVectorStore` class also gets registered with the container. ```csharp using Microsoft.SemanticKernel; diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/pinecone-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/pinecone-connector.md index 9bbc98c62..0c76c3f1f 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/pinecone-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/pinecone-connector.md @@ -56,10 +56,10 @@ The Pinecone Vector Store connector can be used to access and manage data in Pin Add the Pinecone Vector Store connector NuGet package to your project. ```dotnetcli -dotnet add package Microsoft.SemanticKernel.Connectors.Pinecone --prerelease +dotnet add package CommunityToolkit.VectorData.Pinecone --prerelease ``` -You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by Semantic Kernel. +You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. ```csharp using Microsoft.Extensions.DependencyInjection; @@ -96,7 +96,6 @@ kernelBuilder.Services.AddPineconeVectorStore(); ```csharp using Microsoft.Extensions.DependencyInjection; -using Microsoft.SemanticKernel; using PineconeClient = Pinecone.PineconeClient; // Using IServiceCollection with ASP.NET Core. @@ -109,7 +108,7 @@ builder.Services.AddPineconeVectorStore(); You can construct a Pinecone Vector Store instance directly. ```csharp -using Microsoft.SemanticKernel.Connectors.Pinecone; +using CommunityToolkit.VectorData.Pinecone; using PineconeClient = Pinecone.PineconeClient; var vectorStore = new PineconeVectorStore( @@ -119,7 +118,7 @@ var vectorStore = new PineconeVectorStore( It is possible to construct a direct reference to a named collection. ```csharp -using Microsoft.SemanticKernel.Connectors.Pinecone; +using CommunityToolkit.VectorData.Pinecone; using PineconeClient = Pinecone.PineconeClient; var collection = new PineconeCollection( @@ -136,7 +135,7 @@ By default the Pinecone connector will pass null as the namespace for all operat Pinecone collection when constructing it and use this instead for all operations. ```csharp -using Microsoft.SemanticKernel.Connectors.Pinecone; +using CommunityToolkit.VectorData.Pinecone; using PineconeClient = Pinecone.PineconeClient; var collection = new PineconeCollection( diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/postgres-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/postgres-connector.md index 1b5c437a2..e377e3025 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/postgres-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/postgres-connector.md @@ -72,10 +72,10 @@ When using the `AddPostgresVectorStore` dependency injection registration method Add the Postgres Vector Store connector NuGet package to your project. ```dotnetcli -dotnet add package Microsoft.SemanticKernel.Connectors.PgVector --prerelease +dotnet add package CommunityToolkit.VectorData.PgVector --prerelease ``` -You can add the vector store to the `IServiceCollection` dependency injection container using extension methods provided by Semantic Kernel. +You can add the vector store to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. ```csharp using Microsoft.Extensions.DependencyInjection; @@ -90,7 +90,6 @@ Extension methods that take no parameters are also provided. These require an in ```csharp using Microsoft.Extensions.DependencyInjection; -using Microsoft.SemanticKernel; // Using IServiceCollection with ASP.NET Core. var builder = WebApplication.CreateBuilder(args); @@ -99,7 +98,6 @@ builder.Services.AddPostgresVectorStore(""); ```csharp using Microsoft.Extensions.DependencyInjection; -using Microsoft.SemanticKernel; using Npgsql; // Using IServiceCollection with ASP.NET Core. @@ -116,7 +114,7 @@ builder.Services.AddPostgresVectorStore(); You can construct a Postgres Vector Store instance directly with a custom data source or with a connection string. ```csharp -using Microsoft.SemanticKernel.Connectors.PgVector; +using CommunityToolkit.VectorData.PgVector; using Npgsql; NpgsqlDataSourceBuilder dataSourceBuilder = new(""); @@ -126,7 +124,7 @@ var vectorStore = new PostgresVectorStore(dataSource, ownsDataSource: true); ``` ```csharp -using Microsoft.SemanticKernel.Connectors.PgVector; +using CommunityToolkit.VectorData.PgVector; var connection = new PostgresVectorStore(""); ``` @@ -134,7 +132,7 @@ var connection = new PostgresVectorStore(""); It is possible to construct a direct reference to a named collection with a custom data source or with a connection string. ```csharp -using Microsoft.SemanticKernel.Connectors.PgVector; +using CommunityToolkit.VectorData.PgVector; using Npgsql; NpgsqlDataSourceBuilder dataSourceBuilder = new(""); @@ -145,7 +143,7 @@ var collection = new PostgresCollection(dataSource, "skhotels", o ``` ```csharp -using Microsoft.SemanticKernel.Connectors.PgVector; +using CommunityToolkit.VectorData.PgVector; var collection = new PostgresCollection("", "skhotels"); ``` @@ -335,7 +333,7 @@ public static class NpgsqlDataSourceBuilderExtensions Now you can use the `UseEntraAuthentication` method to set up the connection string for the Postgres connector: ```csharp -using Microsoft.SemanticKernel.Connectors.Postgres; +using CommunityToolkit.VectorData.PgVector; var connectionString = "Host=mydb.postgres.database.azure.com;Port=5432;Database=postgres;SSL Mode=Require;"; // No Username or Password var dataSourceBuilder = new NpgsqlDataSourceBuilder(connectionString); diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/qdrant-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/qdrant-connector.md index 67b75cbc8..f8ba9f063 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/qdrant-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/qdrant-connector.md @@ -83,10 +83,10 @@ Not currently supported. Add the Qdrant Vector Store connector NuGet package to your project. ```dotnetcli -dotnet add package Microsoft.SemanticKernel.Connectors.Qdrant --prerelease +dotnet add package CommunityToolkit.VectorData.Qdrant --prerelease ``` -You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by Semantic Kernel. +You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. ```csharp using Microsoft.Extensions.DependencyInjection; @@ -122,7 +122,6 @@ kernelBuilder.Services.AddQdrantVectorStore(); ```csharp using Microsoft.Extensions.DependencyInjection; -using Microsoft.SemanticKernel; using Qdrant.Client; // Using IServiceCollection with ASP.NET Core. @@ -134,7 +133,7 @@ builder.Services.AddQdrantVectorStore(); You can construct a Qdrant Vector Store instance directly. ```csharp -using Microsoft.SemanticKernel.Connectors.Qdrant; +using CommunityToolkit.VectorData.Qdrant; using Qdrant.Client; var vectorStore = new QdrantVectorStore(new QdrantClient("localhost"), ownsClient: true); @@ -143,7 +142,7 @@ var vectorStore = new QdrantVectorStore(new QdrantClient("localhost"), ownsClien It is possible to construct a direct reference to a named collection. ```csharp -using Microsoft.SemanticKernel.Connectors.Qdrant; +using CommunityToolkit.VectorData.Qdrant; using Qdrant.Client; var collection = new QdrantCollection( @@ -387,7 +386,7 @@ To enable named vectors mode, pass this as an option when constructing a Vector The same options can also be passed to any of the provided dependency injection container extension methods. ```csharp -using Microsoft.SemanticKernel.Connectors.Qdrant; +using CommunityToolkit.VectorData.Qdrant; using Qdrant.Client; var vectorStore = new QdrantVectorStore( diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/redis-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/redis-connector.md index 5b1006191..25312f31a 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/redis-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/redis-connector.md @@ -57,10 +57,10 @@ The connector has the following characteristics. Add the Redis Vector Store connector nuget package to your project. ```dotnetcli -dotnet add package Microsoft.SemanticKernel.Connectors.Redis --prerelease +dotnet add package CommunityToolkit.VectorData.Redis --prerelease ``` -You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by Semantic Kernel. +You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. ```csharp using Microsoft.Extensions.DependencyInjection; @@ -74,8 +74,6 @@ kernelBuilder.Services ``` ```csharp -using Microsoft.SemanticKernel; - // Using IServiceCollection with ASP.NET Core. var builder = WebApplication.CreateBuilder(args); builder.Services.AddRedisVectorStore("localhost:6379"); @@ -96,7 +94,6 @@ kernelBuilder.Services.AddRedisVectorStore(); ```csharp using Microsoft.Extensions.DependencyInjection; -using Microsoft.SemanticKernel; using StackExchange.Redis; // Using IServiceCollection with ASP.NET Core. @@ -108,7 +105,7 @@ builder.Services.AddRedisVectorStore(); You can construct a Redis Vector Store instance directly. ```csharp -using Microsoft.SemanticKernel.Connectors.Redis; +using CommunityToolkit.VectorData.Redis; using StackExchange.Redis; var vectorStore = new RedisVectorStore(ConnectionMultiplexer.Connect("localhost:6379").GetDatabase()); @@ -118,7 +115,7 @@ It is possible to construct a direct reference to a named collection. When doing so, you have to choose between the JSON or Hashes instance depending on how you wish to store data in Redis. ```csharp -using Microsoft.SemanticKernel.Connectors.Redis; +using CommunityToolkit.VectorData.Redis; using StackExchange.Redis; // Using Hashes. @@ -128,7 +125,7 @@ var hashesCollection = new RedisHashSetCollection( ``` ```csharp -using Microsoft.SemanticKernel.Connectors.Redis; +using CommunityToolkit.VectorData.Redis; using StackExchange.Redis; // Using JSON. @@ -141,7 +138,7 @@ When constructing a `RedisVectorStore` or registering it with the dependency inj that configures the preferred storage type / mode used: Hashes or JSON. If not specified, the default is JSON. ```csharp -using Microsoft.SemanticKernel.Connectors.Redis; +using CommunityToolkit.VectorData.Redis; using StackExchange.Redis; var vectorStore = new RedisVectorStore( @@ -282,7 +279,7 @@ off the prefixing behavior and pass in the fully prefixed key to the record oper ::: zone pivot="programming-language-csharp" ```csharp -using Microsoft.SemanticKernel.Connectors.Redis; +using CommunityToolkit.VectorData.Redis; using StackExchange.Redis; var collection = new RedisJsonCollection( diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/sql-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/sql-connector.md index 4773bf51f..976a5e463 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/sql-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/sql-connector.md @@ -53,10 +53,10 @@ The SQL Server Vector Store connector can be used to access and manage data in S Add the SQL Sever Vector Store connector NuGet package to your project. ```dotnetcli -dotnet add package Microsoft.SemanticKernel.Connectors.SqlServer --prerelease +dotnet add package CommunityToolkit.VectorData.SqlServer --prerelease ``` -You can add the vector store to the `IServiceCollection` dependency injection container using extension methods provided by Semantic Kernel. +You can add the vector store to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. ```csharp using Microsoft.Extensions.DependencyInjection; @@ -68,7 +68,6 @@ builder.Services.AddSqlServerVectorStore(_ => ""); ```csharp using Microsoft.Extensions.DependencyInjection; -using Microsoft.SemanticKernel; // Using IServiceCollection with ASP.NET Core. var builder = WebApplication.CreateBuilder(args); @@ -78,7 +77,7 @@ builder.Services.AddSqlServerVectorStore(_ => "") You can construct a Sql Server Vector Store instance directly. ```csharp -using Microsoft.SemanticKernel.Connectors.SqlServer; +using CommunityToolkit.VectorData.SqlServer; var vectorStore = new SqlServerVectorStore(""); ``` @@ -86,7 +85,7 @@ var vectorStore = new SqlServerVectorStore(""); It is possible to construct a direct reference to a named collection. ```csharp -using Microsoft.SemanticKernel.Connectors.SqlServer; +using CommunityToolkit.VectorData.SqlServer; var collection = new SqlServerCollection("", "skhotels"); ``` diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/sqlite-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/sqlite-connector.md index b9d5f71cc..962c97c2a 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/sqlite-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/sqlite-connector.md @@ -55,10 +55,10 @@ The SQLite Vector Store connector can be used to access and manage data in SQLit Add the SQLite Vector Store connector NuGet package to your project. ```dotnetcli -dotnet add package Microsoft.SemanticKernel.Connectors.SqliteVec --prerelease +dotnet add package CommunityToolkit.VectorData.SqliteVec --prerelease ``` -You can add the vector store to the `IServiceCollection` dependency injection container using extension methods provided by Semantic Kernel. +You can add the vector store to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. ```csharp using Microsoft.Extensions.DependencyInjection; @@ -70,7 +70,6 @@ builder.Services.AddSqliteVectorStore(_ => "Data Source=:memory:"); ```csharp using Microsoft.Extensions.DependencyInjection; -using Microsoft.SemanticKernel; // Using IServiceCollection with ASP.NET Core. var builder = WebApplication.CreateBuilder(args); @@ -80,7 +79,7 @@ builder.Services.AddSqliteVectorStore(_ => "Data Source=:memory:") You can construct a SQLite Vector Store instance directly. ```csharp -using Microsoft.SemanticKernel.Connectors.SqliteVec; +using CommunityToolkit.VectorData.SqliteVec; var vectorStore = new SqliteVectorStore("Data Source=:memory:"); ``` @@ -88,7 +87,7 @@ var vectorStore = new SqliteVectorStore("Data Source=:memory:"); It is possible to construct a direct reference to a named collection. ```csharp -using Microsoft.SemanticKernel.Connectors.SqliteVec; +using CommunityToolkit.VectorData.SqliteVec; var collection = new SqliteCollection("Data Source=:memory:", "skhotels"); ``` diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/volatile-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/volatile-connector.md index 7757db1e9..2ba542c6e 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/volatile-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/volatile-connector.md @@ -59,7 +59,7 @@ Add the Semantic Kernel Core nuget package to your project. dotnet add package Microsoft.SemanticKernel.Core ``` -You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by Semantic Kernel. +You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. ```csharp using Microsoft.SemanticKernel; @@ -71,8 +71,6 @@ var kernelBuilder = Kernel ``` ```csharp -using Microsoft.SemanticKernel; - // Using IServiceCollection with ASP.NET Core. var builder = WebApplication.CreateBuilder(args); builder.Services.AddVolatileVectorStore(); diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/weaviate-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/weaviate-connector.md index 9c7bb1d04..e10146f40 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/weaviate-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/weaviate-connector.md @@ -89,10 +89,10 @@ Notable Weaviate connector functionality limitations. Add the Weaviate Vector Store connector NuGet package to your project. ```dotnetcli -dotnet add package Microsoft.SemanticKernel.Connectors.Weaviate --prerelease +dotnet add package CommunityToolkit.VectorData.Weaviate --prerelease ``` -You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by Semantic Kernel. +You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. The Weaviate vector store uses an `HttpClient` to communicate with the Weaviate service. There are two options for providing the URL/endpoint for the Weaviate service. It can be provided via options or by setting the base address of the `HttpClient`. @@ -146,7 +146,7 @@ You can construct a Weaviate Vector Store instance directly as well. ```csharp using System.Net.Http; -using Microsoft.SemanticKernel.Connectors.Weaviate; +using CommunityToolkit.VectorData.Weaviate; var vectorStore = new WeaviateVectorStore( new HttpClient { BaseAddress = new Uri("http://localhost:8080/v1/") }); @@ -156,7 +156,7 @@ It is possible to construct a direct reference to a named collection. ```csharp using System.Net.Http; -using Microsoft.SemanticKernel.Connectors.Weaviate; +using CommunityToolkit.VectorData.Weaviate; var collection = new WeaviateCollection( new HttpClient { BaseAddress = new Uri("http://localhost:8080/v1/") }, diff --git a/semantic-kernel/concepts/vector-store-connectors/vector-search.md b/semantic-kernel/concepts/vector-store-connectors/vector-search.md index 30d633d2f..804f47412 100644 --- a/semantic-kernel/concepts/vector-store-connectors/vector-search.md +++ b/semantic-kernel/concepts/vector-store-connectors/vector-search.md @@ -46,7 +46,7 @@ Note that `VectorStoreCollection` implements from `IVectorSearcha Assuming you have a collection that already contains data, you can easily search it. Here is an example using Qdrant. ```csharp -using Microsoft.SemanticKernel.Connectors.Qdrant; +using CommunityToolkit.VectorData.Qdrant; using Microsoft.Extensions.VectorData; using Qdrant.Client; @@ -100,7 +100,7 @@ If the data model contains no vector or multiple vectors and `VectorProperty` is ```csharp using Microsoft.Extensions.VectorData; -using Microsoft.SemanticKernel.Connectors.InMemory; +using CommunityToolkit.VectorData.InMemory; var vectorStore = new InMemoryVectorStore(); var collection = vectorStore.GetCollection("skproducts"); diff --git a/semantic-kernel/get-started/supported-languages.md b/semantic-kernel/get-started/supported-languages.md index 3cf9d4ff2..a52b59d0a 100644 --- a/semantic-kernel/get-started/supported-languages.md +++ b/semantic-kernel/get-started/supported-languages.md @@ -40,15 +40,15 @@ In C#, there are several packages to help ensure that you only need to import th | `Microsoft.SemanticKernel.Connectors.Ollama` | The AI connector for Ollama | | `Microsoft.SemanticKernel.Connectors.Onnx` | The AI connector for Onnx | | `Microsoft.SemanticKernel.Connectors.OpenAI` | The AI connector for OpenAI | -| `Microsoft.SemanticKernel.Connectors.AzureAISearch` | The vector store connector for Azure AI Search | -| `Microsoft.SemanticKernel.Connectors.CosmosMongoDB` | The vector store connector for Azure CosmosDB MongoDB | -| `Microsoft.SemanticKernel.Connectors.CosmosNoSql` | The vector store connector for Azure CosmosDB NoSQL | -| `Microsoft.SemanticKernel.Connectors.MongoDB` | The vector store connector for MongoDB | -| `Microsoft.SemanticKernel.Connectors.Pinecone` | The vector store connector for Pinecone | -| `Microsoft.SemanticKernel.Connectors.Qdrant` | The vector store connector for Qdrant | -| `Microsoft.SemanticKernel.Connectors.Redis` | The vector store connector for Redis | -| `Microsoft.SemanticKernel.Connectors.SqliteVec` | The vector store connector for Sqlite | -| `Microsoft.SemanticKernel.Connectors.Weaviate` | The vector store connector for Weaviate | +| `CommunityToolkit.VectorData.AzureAISearch` | The vector store connector for Azure AI Search | +| `CommunityToolkit.VectorData.CosmosMongoDB` | The vector store connector for Azure CosmosDB MongoDB | +| `CommunityToolkit.VectorData.CosmosNoSql` | The vector store connector for Azure CosmosDB NoSQL | +| `CommunityToolkit.VectorData.MongoDB` | The vector store connector for MongoDB | +| `CommunityToolkit.VectorData.Pinecone` | The vector store connector for Pinecone | +| `CommunityToolkit.VectorData.Qdrant` | The vector store connector for Qdrant | +| `CommunityToolkit.VectorData.Redis` | The vector store connector for Redis | +| `CommunityToolkit.VectorData.SqliteVec` | The vector store connector for Sqlite | +| `CommunityToolkit.VectorData.Weaviate` | The vector store connector for Weaviate | | `Microsoft.SemanticKernel.Plugins.OpenApi` (Experimental) | Enables loading plugins from OpenAPI specifications | | `Microsoft.SemanticKernel.PromptTemplates.Handlebars` | Enables the use of Handlebars templates for prompts | | `Microsoft.SemanticKernel.Yaml` | Provides support for serializing prompts using YAML files | From 4cdb6926d05ed67c2b5d657040bf96d2a5205723 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 20 Jul 2026 16:57:18 +0000 Subject: [PATCH 2/8] Address PR review feedback: fix package names, namespaces, and volatile 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 --- .../elasticsearch-connector.md | 2 ++ .../mongodb-connector.md | 6 +++--- .../out-of-the-box-connectors/redis-connector.md | 2 ++ .../volatile-connector.md | 16 +++++++++------- .../get-started/supported-languages.md | 2 +- 5 files changed, 17 insertions(+), 11 deletions(-) diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/elasticsearch-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/elasticsearch-connector.md index 7c1f91ba3..2e1db8552 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/elasticsearch-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/elasticsearch-connector.md @@ -61,6 +61,7 @@ var kernelBuilder = Kernel ``` ```csharp +using Microsoft.SemanticKernel; using Elastic.Clients.Elasticsearch; // Using IServiceCollection with ASP.NET Core. @@ -84,6 +85,7 @@ kernelBuilder.AddElasticsearchVectorStore(); ```csharp using Microsoft.Extensions.DependencyInjection; +using Microsoft.SemanticKernel; using Elastic.Clients.Elasticsearch; // Using IServiceCollection with ASP.NET Core. diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/mongodb-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/mongodb-connector.md index 5767d39d3..e09e6fd24 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/mongodb-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/mongodb-connector.md @@ -79,7 +79,7 @@ More info coming soon. Add the MongoDB Vector Store connector NuGet package to your project. ```dotnetcli -dotnet add package CommunityToolkit.VectorData.MongoDB --prerelease +dotnet add package MongoDB.VectorData ``` You can add the vector store to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. @@ -112,7 +112,7 @@ builder.Services.AddMongoVectorStore(); You can construct a MongoDB Vector Store instance directly. ```csharp -using CommunityToolkit.VectorData.MongoDB; +using MongoDB.VectorData; using MongoDB.Driver; var mongoClient = new MongoClient(connectionString); @@ -123,7 +123,7 @@ var vectorStore = new MongoVectorStore(database); It is possible to construct a direct reference to a named collection. ```csharp -using CommunityToolkit.VectorData.MongoDB; +using MongoDB.VectorData; using MongoDB.Driver; var mongoClient = new MongoClient(connectionString); diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/redis-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/redis-connector.md index 25312f31a..46ddd93c4 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/redis-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/redis-connector.md @@ -74,6 +74,8 @@ kernelBuilder.Services ``` ```csharp +using Microsoft.Extensions.DependencyInjection; + // Using IServiceCollection with ASP.NET Core. var builder = WebApplication.CreateBuilder(args); builder.Services.AddRedisVectorStore("localhost:6379"); diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/volatile-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/volatile-connector.md index 2ba542c6e..2640850fd 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/volatile-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/volatile-connector.md @@ -53,10 +53,10 @@ The connector has the following characteristics. ## Getting started -Add the Semantic Kernel Core nuget package to your project. +Add the NuGet package to your project. ```dotnetcli -dotnet add package Microsoft.SemanticKernel.Core +dotnet add package CommunityToolkit.VectorData.InMemory ``` You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. @@ -71,25 +71,27 @@ var kernelBuilder = Kernel ``` ```csharp +using Microsoft.Extensions.DependencyInjection; + // Using IServiceCollection with ASP.NET Core. var builder = WebApplication.CreateBuilder(args); -builder.Services.AddVolatileVectorStore(); +builder.Services.AddInMemoryVectorStore(); ``` You can construct a Volatile Vector Store instance directly. ```csharp -using Microsoft.SemanticKernel.Data; +using CommunityToolkit.VectorData.InMemory; -var vectorStore = new VolatileVectorStore(); +var vectorStore = new InMemoryVectorStore(); ``` It is possible to construct a direct reference to a named collection. ```csharp -using Microsoft.SemanticKernel.Data; +using CommunityToolkit.VectorData.InMemory; -var collection = new VolatileVectorStoreRecordCollection("skhotels"); +var collection = new VectorStoreCollection("skhotels"); ``` ::: zone-end diff --git a/semantic-kernel/get-started/supported-languages.md b/semantic-kernel/get-started/supported-languages.md index a52b59d0a..7eb5b6305 100644 --- a/semantic-kernel/get-started/supported-languages.md +++ b/semantic-kernel/get-started/supported-languages.md @@ -43,7 +43,7 @@ In C#, there are several packages to help ensure that you only need to import th | `CommunityToolkit.VectorData.AzureAISearch` | The vector store connector for Azure AI Search | | `CommunityToolkit.VectorData.CosmosMongoDB` | The vector store connector for Azure CosmosDB MongoDB | | `CommunityToolkit.VectorData.CosmosNoSql` | The vector store connector for Azure CosmosDB NoSQL | -| `CommunityToolkit.VectorData.MongoDB` | The vector store connector for MongoDB | +| `MongoDB.VectorData` | The vector store connector for MongoDB | | `CommunityToolkit.VectorData.Pinecone` | The vector store connector for Pinecone | | `CommunityToolkit.VectorData.Qdrant` | The vector store connector for Qdrant | | `CommunityToolkit.VectorData.Redis` | The vector store connector for Redis | From e86996a74c23077a408d10253665a18ffb1c5408 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 20 Jul 2026 16:58:44 +0000 Subject: [PATCH 3/8] Fix volatile-connector.md: use InMemoryCollection instead of VectorStoreCollection --- .../out-of-the-box-connectors/volatile-connector.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/volatile-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/volatile-connector.md index 2640850fd..4fddc9817 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/volatile-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/volatile-connector.md @@ -91,7 +91,7 @@ It is possible to construct a direct reference to a named collection. ```csharp using CommunityToolkit.VectorData.InMemory; -var collection = new VectorStoreCollection("skhotels"); +var collection = new InMemoryCollection("skhotels"); ``` ::: zone-end From 3c6b050c31d5a5be6c708a56d8cb9c5016d35df8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 20 Jul 2026 17:03:39 +0000 Subject: [PATCH 4/8] Revert all changes to volatile-connector.md --- .../volatile-connector.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/volatile-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/volatile-connector.md index 4fddc9817..7757db1e9 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/volatile-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/volatile-connector.md @@ -53,13 +53,13 @@ The connector has the following characteristics. ## Getting started -Add the NuGet package to your project. +Add the Semantic Kernel Core nuget package to your project. ```dotnetcli -dotnet add package CommunityToolkit.VectorData.InMemory +dotnet add package Microsoft.SemanticKernel.Core ``` -You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. +You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by Semantic Kernel. ```csharp using Microsoft.SemanticKernel; @@ -71,27 +71,27 @@ var kernelBuilder = Kernel ``` ```csharp -using Microsoft.Extensions.DependencyInjection; +using Microsoft.SemanticKernel; // Using IServiceCollection with ASP.NET Core. var builder = WebApplication.CreateBuilder(args); -builder.Services.AddInMemoryVectorStore(); +builder.Services.AddVolatileVectorStore(); ``` You can construct a Volatile Vector Store instance directly. ```csharp -using CommunityToolkit.VectorData.InMemory; +using Microsoft.SemanticKernel.Data; -var vectorStore = new InMemoryVectorStore(); +var vectorStore = new VolatileVectorStore(); ``` It is possible to construct a direct reference to a named collection. ```csharp -using CommunityToolkit.VectorData.InMemory; +using Microsoft.SemanticKernel.Data; -var collection = new InMemoryCollection("skhotels"); +var collection = new VolatileVectorStoreRecordCollection("skhotels"); ``` ::: zone-end From 79733d77e2ab5cd26a88db779318761f246e6c7e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 22 Jul 2026 11:47:51 +0000 Subject: [PATCH 5/8] Address PR review feedback: remove --prerelease, revert MongoDB connector, 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 --- .../how-to/vector-store-data-ingestion.md | 2 +- .../concepts/vector-store-connectors/index.md | 2 +- .../azure-ai-search-connector.md | 2 +- .../azure-cosmosdb-mongodb-connector.md | 2 +- .../azure-cosmosdb-nosql-connector.md | 2 +- .../inmemory-connector.md | 2 +- .../mongodb-connector.md | 8 +- .../pinecone-connector.md | 165 +----------------- .../postgres-connector.md | 2 +- .../qdrant-connector.md | 2 +- .../redis-connector.md | 2 +- .../sql-connector.md | 2 +- .../sqlite-connector.md | 2 +- .../weaviate-connector.md | 2 +- .../get-started/supported-languages.md | 1 - 15 files changed, 17 insertions(+), 181 deletions(-) diff --git a/semantic-kernel/concepts/vector-store-connectors/how-to/vector-store-data-ingestion.md b/semantic-kernel/concepts/vector-store-connectors/how-to/vector-store-data-ingestion.md index 5c90795af..36e1f9dba 100644 --- a/semantic-kernel/concepts/vector-store-connectors/how-to/vector-store-data-ingestion.md +++ b/semantic-kernel/concepts/vector-store-connectors/how-to/vector-store-data-ingestion.md @@ -64,7 +64,7 @@ document with and the OpenAI connector from Semantic Kernel for generating embed dotnet new console --framework net8.0 --name SKVectorIngest cd SKVectorIngest dotnet add package Microsoft.SemanticKernel.Connectors.AzureOpenAI -dotnet add package CommunityToolkit.VectorData.Redis --prerelease +dotnet add package CommunityToolkit.VectorData.Redis dotnet add package DocumentFormat.OpenXml ``` diff --git a/semantic-kernel/concepts/vector-store-connectors/index.md b/semantic-kernel/concepts/vector-store-connectors/index.md index 71b965e12..7f12e9655 100644 --- a/semantic-kernel/concepts/vector-store-connectors/index.md +++ b/semantic-kernel/concepts/vector-store-connectors/index.md @@ -258,7 +258,7 @@ Once you have defined your data model, the next step is to create a VectorStore In this example, we'll use Qdrant. You will therefore need to import the Qdrant nuget package. ```dotnetcli -dotnet add package CommunityToolkit.VectorData.Qdrant --prerelease +dotnet add package CommunityToolkit.VectorData.Qdrant ``` If you want to run Qdrant locally using Docker, use the following command to start the Qdrant container diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-ai-search-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-ai-search-connector.md index e6af86d09..0c7da20e1 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-ai-search-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-ai-search-connector.md @@ -100,7 +100,7 @@ Notable Azure AI Search connector functionality limitations. Add the Azure AI Search Vector Store connector NuGet package to your project. ```dotnetcli -dotnet add package CommunityToolkit.VectorData.AzureAISearch --prerelease +dotnet add package CommunityToolkit.VectorData.AzureAISearch ``` You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-cosmosdb-mongodb-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-cosmosdb-mongodb-connector.md index 2a443ad6c..685d2d95d 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-cosmosdb-mongodb-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-cosmosdb-mongodb-connector.md @@ -82,7 +82,7 @@ This connector is compatible with Azure Cosmos DB MongoDB (vCore) and is *not* d Add the Azure CosmosDB MongoDB Vector Store connector NuGet package to your project. ```dotnetcli -dotnet add package CommunityToolkit.VectorData.CosmosMongoDB --prerelease +dotnet add package CommunityToolkit.VectorData.CosmosMongoDB ``` You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-cosmosdb-nosql-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-cosmosdb-nosql-connector.md index 56054bc17..983a567dc 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-cosmosdb-nosql-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/azure-cosmosdb-nosql-connector.md @@ -66,7 +66,7 @@ var cosmosClient = new CosmosClient(connectionString, new CosmosClientOptions() Add the Azure CosmosDB NoSQL Vector Store connector NuGet package to your project. ```dotnetcli -dotnet add package CommunityToolkit.VectorData.CosmosNoSql --prerelease +dotnet add package CommunityToolkit.VectorData.CosmosNoSql ``` You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/inmemory-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/inmemory-connector.md index b2b93c135..742e75b6e 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/inmemory-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/inmemory-connector.md @@ -58,7 +58,7 @@ The connector has the following characteristics. Add the Semantic Kernel Core nuget package to your project. ```dotnetcli -dotnet add package CommunityToolkit.VectorData.InMemory --prerelease +dotnet add package CommunityToolkit.VectorData.InMemory ``` You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/mongodb-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/mongodb-connector.md index e09e6fd24..0c12d4e05 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/mongodb-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/mongodb-connector.md @@ -79,10 +79,10 @@ More info coming soon. Add the MongoDB Vector Store connector NuGet package to your project. ```dotnetcli -dotnet add package MongoDB.VectorData +dotnet add package Microsoft.SemanticKernel.Connectors.MongoDB --prerelease ``` -You can add the vector store to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. +You can add the vector store to the `IServiceCollection` dependency injection container using extension methods provided by Semantic Kernel. ```csharp using Microsoft.Extensions.DependencyInjection; @@ -112,7 +112,7 @@ builder.Services.AddMongoVectorStore(); You can construct a MongoDB Vector Store instance directly. ```csharp -using MongoDB.VectorData; +using Microsoft.SemanticKernel.Connectors.MongoDB; using MongoDB.Driver; var mongoClient = new MongoClient(connectionString); @@ -123,7 +123,7 @@ var vectorStore = new MongoVectorStore(database); It is possible to construct a direct reference to a named collection. ```csharp -using MongoDB.VectorData; +using Microsoft.SemanticKernel.Connectors.MongoDB; using MongoDB.Driver; var mongoClient = new MongoClient(connectionString); diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/pinecone-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/pinecone-connector.md index 0c76c3f1f..1cc2f0d7f 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/pinecone-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/pinecone-connector.md @@ -10,12 +10,6 @@ ms.service: semantic-kernel --- # Using the Pinecone connector (Preview) -::: zone pivot="programming-language-csharp" - -> [!WARNING] -> The Pinecone Vector Store functionality is in preview, and improvements that require breaking changes may still occur in limited circumstances before release. - -::: zone-end ::: zone pivot="programming-language-python" > [!WARNING] @@ -31,164 +25,7 @@ ms.service: semantic-kernel ::: zone pivot="programming-language-csharp" -## Overview - -The Pinecone Vector Store connector can be used to access and manage data in Pinecone. The connector has the following characteristics. - -| Feature Area | Support | -| ------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ | -| Collection maps to | Pinecone serverless Index | -| Supported key property types | string | -| Supported data property types |
  • string
  • int
  • long
  • double
  • float
  • bool
  • decimal
  • *enumerables of type* string
| -| Supported vector property types |
  • ReadOnlyMemory\
  • Embedding\
  • float[]
| -| Supported index types | PGA (Pinecone Graph Algorithm) | -| Supported distance functions |
  • CosineSimilarity
  • DotProductSimilarity
  • EuclideanSquaredDistance
| -| Supported filter clauses |
  • EqualTo
| -| Supports multiple vectors in a record | No | -| IsIndexed supported? | Yes | -| IsFullTextIndexed supported? | No | -| StorageName supported? | Yes | -| HybridSearch supported? | No | -| Integrated Embeddings supported? | No | - -## Getting started - -Add the Pinecone Vector Store connector NuGet package to your project. - -```dotnetcli -dotnet add package CommunityToolkit.VectorData.Pinecone --prerelease -``` - -You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. - -```csharp -using Microsoft.Extensions.DependencyInjection; -using Microsoft.SemanticKernel; - -// Using Kernel Builder. -var kernelBuilder = Kernel - .CreateBuilder(); -kernelBuilder.Services - .AddPineconeVectorStore(pineconeApiKey); -``` - -```csharp -using Microsoft.Extensions.DependencyInjection; - -// Using IServiceCollection with ASP.NET Core. -var builder = WebApplication.CreateBuilder(args); -builder.Services.AddPineconeVectorStore(pineconeApiKey); -``` - -Extension methods that take no parameters are also provided. These require an instance of the `PineconeClient` to be separately registered with the dependency injection container. - -```csharp -using Microsoft.Extensions.DependencyInjection; -using Microsoft.SemanticKernel; -using PineconeClient = Pinecone.PineconeClient; - -// Using Kernel Builder. -var kernelBuilder = Kernel.CreateBuilder(); -kernelBuilder.Services.AddSingleton( - sp => new PineconeClient(pineconeApiKey)); -kernelBuilder.Services.AddPineconeVectorStore(); -``` - -```csharp -using Microsoft.Extensions.DependencyInjection; -using PineconeClient = Pinecone.PineconeClient; - -// Using IServiceCollection with ASP.NET Core. -var builder = WebApplication.CreateBuilder(args); -builder.Services.AddSingleton( - sp => new PineconeClient(pineconeApiKey)); -builder.Services.AddPineconeVectorStore(); -``` - -You can construct a Pinecone Vector Store instance directly. - -```csharp -using CommunityToolkit.VectorData.Pinecone; -using PineconeClient = Pinecone.PineconeClient; - -var vectorStore = new PineconeVectorStore( - new PineconeClient(pineconeApiKey)); -``` - -It is possible to construct a direct reference to a named collection. - -```csharp -using CommunityToolkit.VectorData.Pinecone; -using PineconeClient = Pinecone.PineconeClient; - -var collection = new PineconeCollection( - new PineconeClient(pineconeApiKey), - "skhotels"); -``` - -## Index Namespace - -The Vector Store abstraction does not support a multi tiered record grouping mechanism. Collections in the abstraction map to a Pinecone serverless index -and no second level exists in the abstraction. Pinecone does support a second level of grouping called namespaces. - -By default the Pinecone connector will pass null as the namespace for all operations. However it is possible to pass a single namespace to the -Pinecone collection when constructing it and use this instead for all operations. - -```csharp -using CommunityToolkit.VectorData.Pinecone; -using PineconeClient = Pinecone.PineconeClient; - -var collection = new PineconeCollection( - new PineconeClient(pineconeApiKey), - "skhotels", - new() { IndexNamespace = "seasidehotels" }); -``` - -## Data mapping - -The Pinecone connector provides a default mapper when mapping data from the data model to storage. -Pinecone requires properties to be mapped into id, metadata and values groupings. -The default mapper uses the model annotations or record definition to determine the type of each property and to do this mapping. - -- The data model property annotated as a key will be mapped to the Pinecone id property. -- The data model properties annotated as data will be mapped to the Pinecone metadata object. -- The data model property annotated as a vector will be mapped to the Pinecone vector property. - -### Property name override - -For data properties, you can provide override field names to use in storage that is different to the -property names on the data model. This is not supported for keys, since a key has a fixed name in Pinecone. -It is also not supported for vectors, since the vector is stored under a fixed name `values`. -The property name override is done by setting the `StorageName` option via the data model attributes or record definition. - -Here is an example of a data model with `StorageName` set on its attributes and how that will be represented in Pinecone. - -```csharp -using Microsoft.Extensions.VectorData; - -public class Hotel -{ - [VectorStoreKey] - public string HotelId { get; set; } - - [VectorStoreData(IsIndexed = true, StorageName = "hotel_name")] - public string HotelName { get; set; } - - [VectorStoreData(IsFullTextIndexed = true, StorageName = "hotel_description")] - public string Description { get; set; } - - [VectorStoreVector(Dimensions: 4, DistanceFunction = DistanceFunction.CosineSimilarity, IndexKind = IndexKind.Hnsw)] - public ReadOnlyMemory? DescriptionEmbedding { get; set; } -} -``` - -```json -{ - "id": "h1", - "values": [0.9, 0.1, 0.1, 0.1], - "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#. ::: zone-end ::: zone pivot="programming-language-python" diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/postgres-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/postgres-connector.md index e377e3025..3f14d2df5 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/postgres-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/postgres-connector.md @@ -72,7 +72,7 @@ When using the `AddPostgresVectorStore` dependency injection registration method Add the Postgres Vector Store connector NuGet package to your project. ```dotnetcli -dotnet add package CommunityToolkit.VectorData.PgVector --prerelease +dotnet add package CommunityToolkit.VectorData.PgVector ``` You can add the vector store to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/qdrant-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/qdrant-connector.md index f8ba9f063..9ceed691c 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/qdrant-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/qdrant-connector.md @@ -83,7 +83,7 @@ Not currently supported. Add the Qdrant Vector Store connector NuGet package to your project. ```dotnetcli -dotnet add package CommunityToolkit.VectorData.Qdrant --prerelease +dotnet add package CommunityToolkit.VectorData.Qdrant ``` You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/redis-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/redis-connector.md index 46ddd93c4..150f34081 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/redis-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/redis-connector.md @@ -57,7 +57,7 @@ The connector has the following characteristics. Add the Redis Vector Store connector nuget package to your project. ```dotnetcli -dotnet add package CommunityToolkit.VectorData.Redis --prerelease +dotnet add package CommunityToolkit.VectorData.Redis ``` You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/sql-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/sql-connector.md index 976a5e463..286c9c1e0 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/sql-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/sql-connector.md @@ -53,7 +53,7 @@ The SQL Server Vector Store connector can be used to access and manage data in S Add the SQL Sever Vector Store connector NuGet package to your project. ```dotnetcli -dotnet add package CommunityToolkit.VectorData.SqlServer --prerelease +dotnet add package CommunityToolkit.VectorData.SqlServer ``` You can add the vector store to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/sqlite-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/sqlite-connector.md index 962c97c2a..7124fb05c 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/sqlite-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/sqlite-connector.md @@ -55,7 +55,7 @@ The SQLite Vector Store connector can be used to access and manage data in SQLit Add the SQLite Vector Store connector NuGet package to your project. ```dotnetcli -dotnet add package CommunityToolkit.VectorData.SqliteVec --prerelease +dotnet add package CommunityToolkit.VectorData.SqliteVec ``` You can add the vector store to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/weaviate-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/weaviate-connector.md index e10146f40..67bb0596c 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/weaviate-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/weaviate-connector.md @@ -89,7 +89,7 @@ Notable Weaviate connector functionality limitations. Add the Weaviate Vector Store connector NuGet package to your project. ```dotnetcli -dotnet add package CommunityToolkit.VectorData.Weaviate --prerelease +dotnet add package CommunityToolkit.VectorData.Weaviate ``` You can add the vector store to the dependency injection container available on the `KernelBuilder` or to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. diff --git a/semantic-kernel/get-started/supported-languages.md b/semantic-kernel/get-started/supported-languages.md index 7eb5b6305..aa10c12e4 100644 --- a/semantic-kernel/get-started/supported-languages.md +++ b/semantic-kernel/get-started/supported-languages.md @@ -44,7 +44,6 @@ In C#, there are several packages to help ensure that you only need to import th | `CommunityToolkit.VectorData.CosmosMongoDB` | The vector store connector for Azure CosmosDB MongoDB | | `CommunityToolkit.VectorData.CosmosNoSql` | The vector store connector for Azure CosmosDB NoSQL | | `MongoDB.VectorData` | The vector store connector for MongoDB | -| `CommunityToolkit.VectorData.Pinecone` | The vector store connector for Pinecone | | `CommunityToolkit.VectorData.Qdrant` | The vector store connector for Qdrant | | `CommunityToolkit.VectorData.Redis` | The vector store connector for Redis | | `CommunityToolkit.VectorData.SqliteVec` | The vector store connector for Sqlite | From 12a788e7af76e21684bc81dd4273bdecc79fae0b Mon Sep 17 00:00:00 2001 From: Adam Sitnik Date: Wed, 22 Jul 2026 13:52:45 +0200 Subject: [PATCH 6/8] Apply suggestions from code review Co-authored-by: Adam Sitnik --- .../out-of-the-box-connectors/sqlite-connector.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/sqlite-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/sqlite-connector.md index 7124fb05c..962c97c2a 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/sqlite-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/sqlite-connector.md @@ -55,7 +55,7 @@ The SQLite Vector Store connector can be used to access and manage data in SQLit Add the SQLite Vector Store connector NuGet package to your project. ```dotnetcli -dotnet add package CommunityToolkit.VectorData.SqliteVec +dotnet add package CommunityToolkit.VectorData.SqliteVec --prerelease ``` You can add the vector store to the `IServiceCollection` dependency injection container using extension methods provided by the connector package. From 1e45d7c4031a27f2ba0d1cc9addbe3c6e68fbfc0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 24 Jul 2026 15:13:51 +0000 Subject: [PATCH 7/8] Add [!WARNING] callout to pinecone-connector.md C# zone pivot --- .../out-of-the-box-connectors/pinecone-connector.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/pinecone-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/pinecone-connector.md index 1cc2f0d7f..be41fb876 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/pinecone-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/pinecone-connector.md @@ -25,7 +25,8 @@ ms.service: semantic-kernel ::: zone pivot="programming-language-csharp" -The .NET SDK for Pinecone has been archived and is no longer supported. The Pinecone connector is not available for C#. +> [!WARNING] +> Pinecone has dropped the .NET SDK support by archiving [their repository](https://github.com/pinecone-io/pinecone-dotnet-client). ::: zone-end ::: zone pivot="programming-language-python" From 32a632d16e6e1386664ca82aa5e08d7e74304181 Mon Sep 17 00:00:00 2001 From: Adam Sitnik Date: Fri, 24 Jul 2026 17:24:26 +0200 Subject: [PATCH 8/8] move the C# warning to the top of the file --- .../out-of-the-box-connectors/pinecone-connector.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/pinecone-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/pinecone-connector.md index be41fb876..cf60922b2 100644 --- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/pinecone-connector.md +++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/pinecone-connector.md @@ -10,23 +10,22 @@ ms.service: semantic-kernel --- # Using the Pinecone connector (Preview) -::: zone pivot="programming-language-python" +::: zone pivot="programming-language-csharp" > [!WARNING] -> The Semantic Kernel Vector Store functionality is in preview, and improvements that require breaking changes may still occur in limited circumstances before release. +> Pinecone has dropped the .NET SDK support by archiving [their repository](https://github.com/pinecone-io/pinecone-dotnet-client). ::: zone-end -::: zone pivot="programming-language-java" +::: zone pivot="programming-language-python" > [!WARNING] > The Semantic Kernel Vector Store functionality is in preview, and improvements that require breaking changes may still occur in limited circumstances before release. ::: zone-end - -::: zone pivot="programming-language-csharp" +::: zone pivot="programming-language-java" > [!WARNING] -> Pinecone has dropped the .NET SDK support by archiving [their repository](https://github.com/pinecone-io/pinecone-dotnet-client). +> The Semantic Kernel Vector Store functionality is in preview, and improvements that require breaking changes may still occur in limited circumstances before release. ::: zone-end ::: zone pivot="programming-language-python"