Encamina.Enmarcha.Data.Qdrant 8.1.6

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Encamina.Enmarcha.Data.Qdrant --version 8.1.6
NuGet\Install-Package Encamina.Enmarcha.Data.Qdrant -Version 8.1.6
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="Encamina.Enmarcha.Data.Qdrant" Version="8.1.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Encamina.Enmarcha.Data.Qdrant --version 8.1.6
#r "nuget: Encamina.Enmarcha.Data.Qdrant, 8.1.6"
#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 Encamina.Enmarcha.Data.Qdrant as a Cake Addin
#addin nuget:?package=Encamina.Enmarcha.Data.Qdrant&version=8.1.6

// Install Encamina.Enmarcha.Data.Qdrant as a Cake Tool
#tool nuget:?package=Encamina.Enmarcha.Data.Qdrant&version=8.1.6

Data - Qdrant

Nuget package

The Data Qdrant project contains functionalities related to the Qdrant vector database.

Setup

Nuget package

First, install NuGet. Then, install Encamina.Enmarcha.Data.Qdrant from the package manager console:

PM> Install-Package Encamina.Enmarcha.Data.Qdrant

.NET CLI:

First, install .NET CLI. Then, install Encamina.Enmarcha.Data.Qdrant from the .NET CLI:

dotnet add package Encamina.Enmarcha.Data.Qdrant

How to use

QdrantSnapshotHandler

Qdrant vector database supports creating snapshots, which consist in a .snapshot archive file containing the necessary data to restore the collection at the time of the snapshot. This handler allows you to take snapshots of Qdrant. First, you need to add the QdrantOptions to your project configuration. You can achieve this by using any configuration provider. The followng code is an example of how the settings would appear using the appsettings.json file:

// ...
  "QdrantOptions": {
    "Host": "https://sample-qdrant.azurewebsites.net/", // Endpoint protocol and host
    "Port": 6333, // Endpoint port
    "VectorSize": 1536, // Vector size
    "ApiKey": "xxxxxxxxxx" // API Key used by Qdrant as a form of client authentication.
  },
// ...

Starting from a Program.cs or a similar entry point file in your project, add the following code:

// Entry point
var builder = WebApplication.CreateBuilder(new WebApplicationOptions
{
    // ...
});

// ... 

// Or others configuration providers...
builder.Configuration.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true); 

builder.Services.AddOptions<QdrantOptions>().Bind(builder.Configuration.GetSection(nameof(QdrantOptions)))
    .ValidateDataAnnotations()
    .ValidateOnStart();

services.AddQdrantSnapshotHandler();

This extension method will add the implementation of the IQdrantSnapshotHandler interface as a singleton, in addition to configuring an HttpClient with QdrantOptions so that the handler can use the Qdrant REST API. The implementation is QdrantSnapshotHandler. With this, it can resolve the IQdrantSnapshotHandler interface and take snapshots:

public class MyClass
{
    private readonly IQdrantSnapshotHandler qdrantSnapshotHandler;

    public MyClass(IQdrantSnapshotHandler qdrantSnapshotHandler)
    {
        this.qdrantSnapshotHandler = qdrantSnapshotHandler;
    }

    public async Task TestQdrantSnapshotAsync()
    {
        await qdrantSnapshotHandler.CreateCollectionSnapshotAsync("my-collection-1", CancellationToken.None);
    }
}

The previous code creates a snapshot of the 'my-collection-1' collection.

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

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.1.7-preview-07 53 6/10/2024
8.1.7-preview-06 52 6/10/2024
8.1.7-preview-05 68 6/6/2024
8.1.7-preview-04 64 6/6/2024
8.1.7-preview-03 72 5/24/2024
8.1.7-preview-02 77 5/10/2024
8.1.7-preview-01 74 5/8/2024
8.1.6 96 5/7/2024
8.1.6-preview-08 31 5/2/2024
8.1.6-preview-07 65 4/29/2024
8.1.6-preview-06 82 4/26/2024
8.1.6-preview-05 70 4/24/2024
8.1.6-preview-04 63 4/22/2024
8.1.6-preview-03 70 4/22/2024
8.1.6-preview-02 59 4/17/2024
8.1.6-preview-01 60 4/15/2024
8.1.5 87 4/15/2024
8.1.5-preview-15 67 4/10/2024
8.1.5-preview-14 83 3/20/2024
8.1.5-preview-13 60 3/18/2024
8.1.5-preview-12 82 3/13/2024
8.1.5-preview-11 68 3/13/2024
8.1.5-preview-10 98 3/13/2024
8.1.5-preview-09 58 3/12/2024
8.1.5-preview-08 78 3/12/2024
8.1.5-preview-07 75 3/8/2024
8.1.5-preview-06 59 3/8/2024
8.1.5-preview-05 67 3/7/2024
8.1.5-preview-04 85 3/7/2024
8.1.5-preview-03 69 3/7/2024
8.1.5-preview-02 60 2/28/2024
8.1.5-preview-01 59 2/19/2024
8.1.4 96 2/15/2024
8.1.3 93 2/13/2024
8.1.3-preview-07 61 2/13/2024
8.1.3-preview-06 62 2/12/2024
8.1.3-preview-05 66 2/9/2024
8.1.3-preview-04 71 2/8/2024
8.1.3-preview-03 80 2/7/2024
8.1.3-preview-02 63 2/2/2024
8.1.3-preview-01 60 2/2/2024
8.1.2 124 2/1/2024
8.1.2-preview-9 75 1/22/2024
8.1.2-preview-8 59 1/19/2024
8.1.2-preview-7 67 1/19/2024
8.1.2-preview-6 61 1/19/2024
8.1.2-preview-5 55 1/19/2024
8.1.2-preview-4 62 1/19/2024
8.1.2-preview-3 59 1/18/2024
8.1.2-preview-2 60 1/18/2024
8.1.2-preview-16 63 1/31/2024
8.1.2-preview-15 62 1/31/2024
8.1.2-preview-14 95 1/25/2024
8.1.2-preview-13 64 1/25/2024
8.1.2-preview-12 59 1/23/2024
8.1.2-preview-11 62 1/23/2024
8.1.2-preview-10 61 1/22/2024
8.1.2-preview-1 61 1/18/2024
8.1.1 98 1/18/2024
8.1.0 70 1/18/2024
8.0.3 114 12/29/2023
8.0.1 104 12/14/2023
8.0.0 106 12/7/2023
6.0.4.3 117 12/29/2023
6.0.4.2 87 12/20/2023
6.0.4.1 66 12/19/2023
6.0.4 96 12/4/2023
6.0.3.20 88 11/27/2023
6.0.3.19 103 11/22/2023