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.
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.
// Install Milvus.Client as a Cake Addin
#addin nuget:?package=Milvus.Client&version=2.2.2-preview.2&prerelease

// Install Milvus.Client as a Cake Tool
#tool nuget:?package=Milvus.Client&version=2.2.2-preview.2&prerelease                

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. 
.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 (4)

Showing the top 4 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.

GitHub repositories (5)

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
testcontainers/testcontainers-dotnet
A library to support tests with throwaway instances of Docker containers for all compatible .NET Standard versions.
dotnet/aspire
An opinionated, cloud ready stack for building observable, production ready, distributed applications in .NET
dotnet/dotnet
Home of .NET's Virtual Monolithic Repository which includes all the code needed to build the .NET SDK from source
MayDay-wpf/AIBotPublic
AIBot PRO 是一个基于.NET 6 的 AI聚合客户端 to C 弱 to B 可以集成众多AI产品(ChatGPT,Gemini,Claude,文心一言,通义千问,讯飞星火),无感切换对话,支持知识库、插件开发、AI流程引擎(workflow)、以及开放平台对外输出定制化的特色AI API
Version Downloads Last updated
2.3.0-preview.1 81,863 3/20/2024
2.2.2-preview.6 156,489 9/12/2023
2.2.2-preview.5 495 9/9/2023
2.2.2-preview.4 633 9/4/2023
2.2.2-preview.3 492 8/29/2023
2.2.2-preview.2 142 8/22/2023