![]() |
VOOZH | about |
dotnet add package AIKit.VectorStores --version 0.0.7
NuGet\Install-Package AIKit.VectorStores -Version 0.0.7
<PackageReference Include="AIKit.VectorStores" Version="0.0.7" />
<PackageVersion Include="AIKit.VectorStores" Version="0.0.7" />Directory.Packages.props
<PackageReference Include="AIKit.VectorStores" />Project file
paket add AIKit.VectorStores --version 0.0.7
#r "nuget: AIKit.VectorStores, 0.0.7"
#:package AIKit.VectorStores@0.0.7
#addin nuget:?package=AIKit.VectorStores&version=0.0.7Install as a Cake Addin
#tool nuget:?package=AIKit.VectorStores&version=0.0.7Install as a Cake Tool
👁 NuGet Version
👁 NuGet Downloads
👁 License: Apache-2.0
Vector store abstractions and common interfaces
dotnet add package AIKit.VectorStores --version 1.0.0
using AIKit.VectorStores.InMemory;
using Microsoft.Extensions.VectorData;
// Create a vector store
var vectorStore = new InMemoryVectorStore();
// Add a document with embedding
await vectorStore.AddAsync(new VectorDocument
{
Id = "doc1",
Vector = new ReadOnlyMemory<float>(new float[] { 0.1f, 0.2f, 0.3f }),
Metadata = new Dictionary<string, object> { ["title"] = "AIKit Intro" }
});
// Search for similar vectors
var results = await vectorStore.SearchAsync(
new ReadOnlyMemory<float>(new float[] { 0.1f, 0.2f, 0.3f }),
new VectorSearchOptions { Top = 5 });
For detailed API documentation, see API Reference.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 5 NuGet packages that depend on AIKit.VectorStores:
| Package | Downloads |
|---|---|
|
AIKit.VectorStores.PgVector
PgVector vector store provider for AIKit. |
|
|
AIKit.VectorStores.InMemory
In-memory vector store provider for AIKit. |
|
|
AIKit.VectorStores.SqlServer
SqlServer vector store provider for AIKit. |
|
|
AIKit.VectorStores.Redis
Redis vector store provider for AIKit. |
|
|
AIKit.VectorStores.SqliteVec
SqliteVec vector store provider for AIKit. |
This package is not used by any popular GitHub repositories.