Milvus.Client 2.2.2-preview.2

Prefix Reserved
This is a prerelease version of Milvus.Client.
There is a newer prerelease version of this package available.
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
                    
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="Milvus.Client" Version="2.2.2-preview.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Milvus.Client" Version="2.2.2-preview.2" />
                    
Directory.Packages.props
<PackageReference Include="Milvus.Client" />
                    
Project file
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 Milvus.Client --version 2.2.2-preview.2
                    
#r "nuget: Milvus.Client, 2.2.2-preview.2"
                    
#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.
#addin nuget:?package=Milvus.Client&version=2.2.2-preview.2&prerelease
                    
Install Milvus.Client as a Cake Addin
#tool nuget:?package=Milvus.Client&version=2.2.2-preview.2&prerelease
                    
Install Milvus.Client as a Cake Tool

milvus-sdk-c#

Github Repository

Milvus docs

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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