ClickHouse.SemanticKernel
0.1.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package ClickHouse.SemanticKernel --version 0.1.0
NuGet\Install-Package ClickHouse.SemanticKernel -Version 0.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ClickHouse.SemanticKernel" Version="0.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ClickHouse.SemanticKernel" Version="0.1.0" />
<PackageReference Include="ClickHouse.SemanticKernel" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ClickHouse.SemanticKernel --version 0.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: ClickHouse.SemanticKernel, 0.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package ClickHouse.SemanticKernel@0.1.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ClickHouse.SemanticKernel&version=0.1.0
#tool nuget:?package=ClickHouse.SemanticKernel&version=0.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
ClickHouse.SemanticKernel
A Microsoft.Extensions.VectorData connector for ClickHouse, built on ClickHouse.Driver. Use ClickHouse as a vector store from Semantic Kernel and any other Microsoft.Extensions.VectorData consumer — CRUD, filtered queries, and vector similarity search through the standard SK interface.
Features
- Vector similarity search via the native
vector_similarityHNSW index withcosineDistanceorL2Distance - LINQ-based filters translated to ClickHouse SQL (
has(),hasAny(), null-safe equality, range predicates) - Upsert semantics on top of
ReplacingMergeTreewithFINALreads for immediate consistency - Dynamic collections (
Dictionary<string, object?>) alongside strongly-typed records - Client-side embedding generation via
IEmbeddingGenerator<string, Embedding<float>> - DI integration via
AddClickHouseVectorStore/AddClickHouseCollection
Usage
using ClickHouse.SemanticKernel;
using Microsoft.Extensions.VectorData;
public class Movie
{
[VectorStoreKey] public string Key { get; set; } = "";
[VectorStoreData] public string Title { get; set; } = "";
[VectorStoreData(IsIndexed = true)] public int Year { get; set; }
[VectorStoreData] public string[] Genres { get; set; } = [];
[VectorStoreVector(Dimensions: 768, DistanceFunction = DistanceFunction.CosineDistance, IndexKind = IndexKind.Hnsw)]
public ReadOnlyMemory<float> Embedding { get; set; }
}
var store = new ClickHouseVectorStore("Host=localhost;Protocol=http;Database=default");
var collection = store.GetCollection<string, Movie>("movies");
await collection.EnsureCollectionExistsAsync();
await collection.UpsertAsync(new Movie { /* ... */ });
var results = collection.SearchAsync(
queryEmbedding,
top: 5,
new VectorSearchOptions<Movie>
{
Filter = m => m.Year >= 2015 && m.Genres.Contains("Sci-Fi")
});
Requirements
- .NET 8 runtime or newer (the package targets
net8.0; building from source needs the .NET 10 SDK pinned inglobal.json) - ClickHouse 25.2+ (for the
vector_similarityskip index)
More information
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- ClickHouse.Driver (>= 1.1.0)
- Microsoft.Extensions.AI.Abstractions (>= 10.3.0)
- Microsoft.Extensions.Configuration (>= 10.0.3)
- Microsoft.Extensions.DependencyInjection (>= 10.0.3)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.3)
- Microsoft.Extensions.VectorData.Abstractions (>= 9.7.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.