Milvus.Client
2.2.2-preview.2
Prefix Reserved
See the version list below for details.
dotnet add package Milvus.Client --version 2.2.2-preview.2
NuGet\Install-Package Milvus.Client -Version 2.2.2-preview.2
<PackageReference Include="Milvus.Client" Version="2.2.2-preview.2" />
<PackageVersion Include="Milvus.Client" Version="2.2.2-preview.2" />
<PackageReference Include="Milvus.Client" />
paket add Milvus.Client --version 2.2.2-preview.2
#r "nuget: Milvus.Client, 2.2.2-preview.2"
#addin nuget:?package=Milvus.Client&version=2.2.2-preview.2&prerelease
#tool nuget:?package=Milvus.Client&version=2.2.2-preview.2&prerelease
milvus-sdk-c#
Overview
This is the C# SDK for Milvus. It is implemented using the gRPC protocol and provides most of the features of the Milvus server. And restful api support is ready now.
Create a client.
Grpc
using Milvus.Client;
MilvusClient client = new MilvusClient("{Endpoint}", "{Port}","{Username}","Password");
MilvusHealthState result = await milvusClient.HealthAsync();
Restful
using Milvus.Client;
MilvusClient client = new MilvusClient("{Endpoint}", "{Port}","{Username}","Password");
MilvusHealthState result = await milvusClient.HealthAsync();
Create a collection.
string collectionName = "test_collection";
await client.CreateCollectionAsync(
collectionName,
new[] {
FieldType.Create<long>("book_id",isPrimaryKey:true),
FieldType.Create<long>("word_count"),
FieldType.CreateVarchar("book_name",256),
FieldType.CreateFloatVector("book_intro",2),
}
);
//Check if the collection exists.
bool collectionExist = await milvusClient.HasCollectionAsync(collectionName);
Insert vectors.
Random ran = new Random();
List<long> bookIds = new();
List<long> wordCounts = new();
List<List<float>> bookIntros = new();
List<string> bookNames = new();
for (long i = 0L; i < 2000; ++i)
{
bookIds.Add(i);
wordCounts.Add(i + 10000);
bookNames.Add($"Book Name {i}");
List<float> vector = new();
for (int k = 0; k < 2; ++k)
{
vector.Add(ran.Next());
}
bookIntros.Add(vector);
}
MilvusMutationResult result = await milvusClient.InsertAsync(collectionName,
new Field[]
{
Field.Create("book_id",bookIds),
Field.Create("word_count",wordCounts),
Field.Create("book_name",bookNames),
Field.CreateFloatVector("book_intro",bookIntros),
},
partitionName);
Create a index and load collection.
await milvusClient.CreateIndexAsync(
collectionName,
"book_intro",
"default",
MilvusIndexType.IVF_FLAT,//Use MilvusIndexType.AUTOINDEX when you are using zilliz cloud.
MilvusMetricType.L2,
new Dictionary<string, string> { { "nlist", "1024" } });
//Then load it
await milvusClient.LoadCollectionAsync(collectionName);
Search vectors.
//Search
List<string> search_output_fields = new() { "book_id" };
List<List<float>> search_vectors = new() { new() { 0.1f, 0.2f } };
var searchResult = await milvusClient.SearchAsync(
MilvusSearchParameters.Create(collectionName, "book_intro", search_output_fields)
.WithVectors(search_vectors)
.WithConsistencyLevel(MilvusConsistencyLevel.Strong)
.WithMetricType(MilvusMetricType.IP)
.WithTopK(topK: 2)
.WithParameter("nprobe", "10")
.WithParameter("offset", "5"));
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Google.Protobuf (>= 3.23.4)
- Grpc.Net.Client (>= 2.55.0)
- Microsoft.Bcl.HashCode (>= 1.1.1)
- Microsoft.Extensions.Logging.Abstractions (>= 7.0.1)
- System.Text.Json (>= 7.0.3)
-
net6.0
- Google.Protobuf (>= 3.23.4)
- Grpc.Net.Client (>= 2.55.0)
- Microsoft.Extensions.Logging.Abstractions (>= 7.0.1)
- System.Text.Json (>= 7.0.3)
NuGet packages (5)
Showing the top 5 NuGet packages that depend on Milvus.Client:
Package | Downloads |
---|---|
Microsoft.SemanticKernel.Connectors.Milvus
Milvus connector for Semantic Kernel plugins and semantic memory |
|
Microsoft.DotNet.Interactive.AI
Support for AI experimentation in notebooks |
|
Aspire.Milvus.Client
A Milvus client that integrates with Aspire, including logging. |
|
AspNetCore.Pulse.Milvus
Pulse.Milvus is the health check package for Milvus. |
|
AspNetCore.HealthChecks.Milvus
HealthChecks.Milvus is the health check package for Milvus. |
GitHub repositories (6)
Showing the top 5 popular GitHub repositories that depend on Milvus.Client:
Repository | Stars |
---|---|
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
|
|
dotnet/aspire
Tools, templates, and packages to accelerate building observable, production-ready apps
|
|
Xabaril/AspNetCore.Diagnostics.HealthChecks
Enterprise HealthChecks for ASP.NET Core Diagnostics Package
|
|
testcontainers/testcontainers-dotnet
A library to support tests with throwaway instances of Docker containers for all compatible .NET Standard versions.
|
|
dotnet/dotnet
Home of .NET's Virtual Monolithic Repository which includes all the code needed to build the .NET SDK.
|
Version | Downloads | Last updated |
---|---|---|
2.3.0-preview.1 | 178,575 | 3/20/2024 |
2.2.2-preview.6 | 164,934 | 9/12/2023 |
2.2.2-preview.5 | 1,789 | 9/9/2023 |
2.2.2-preview.4 | 2,001 | 9/4/2023 |
2.2.2-preview.3 | 551 | 8/29/2023 |
2.2.2-preview.2 | 191 | 8/22/2023 |