Encamina.Enmarcha.Data.Qdrant
8.2.0
dotnet add package Encamina.Enmarcha.Data.Qdrant --version 8.2.0
NuGet\Install-Package Encamina.Enmarcha.Data.Qdrant -Version 8.2.0
<PackageReference Include="Encamina.Enmarcha.Data.Qdrant" Version="8.2.0" />
paket add Encamina.Enmarcha.Data.Qdrant --version 8.2.0
#r "nuget: Encamina.Enmarcha.Data.Qdrant, 8.2.0"
// Install Encamina.Enmarcha.Data.Qdrant as a Cake Addin #addin nuget:?package=Encamina.Enmarcha.Data.Qdrant&version=8.2.0 // Install Encamina.Enmarcha.Data.Qdrant as a Cake Tool #tool nuget:?package=Encamina.Enmarcha.Data.Qdrant&version=8.2.0
Data - Qdrant
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 | Versions 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. |
-
net6.0
- CommunityToolkit.Diagnostics (>= 8.2.2)
- Encamina.Enmarcha.Data.Qdrant.Abstractions (>= 8.2.0)
- Microsoft.Extensions.Http (>= 8.0.0)
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.2.0 | 56 | 10/22/2024 |
8.2.0-preview-01-m01 | 80 | 9/17/2024 |
8.1.9-preview-02 | 55 | 10/22/2024 |
8.1.9-preview-01 | 62 | 10/4/2024 |
8.1.8 | 68 | 9/23/2024 |
8.1.8-preview-07 | 56 | 9/12/2024 |
8.1.8-preview-06 | 78 | 9/11/2024 |
8.1.8-preview-05 | 100 | 9/10/2024 |
8.1.8-preview-04 | 106 | 8/16/2024 |
8.1.8-preview-03 | 103 | 8/13/2024 |
8.1.8-preview-02 | 94 | 8/13/2024 |
8.1.8-preview-01 | 96 | 8/12/2024 |
8.1.7 | 95 | 8/7/2024 |
8.1.7-preview-09 | 83 | 7/3/2024 |
8.1.7-preview-08 | 80 | 7/2/2024 |
8.1.7-preview-07 | 78 | 6/10/2024 |
8.1.7-preview-06 | 80 | 6/10/2024 |
8.1.7-preview-05 | 89 | 6/6/2024 |
8.1.7-preview-04 | 73 | 6/6/2024 |
8.1.7-preview-03 | 82 | 5/24/2024 |
8.1.7-preview-02 | 105 | 5/10/2024 |
8.1.7-preview-01 | 85 | 5/8/2024 |
8.1.6 | 134 | 5/7/2024 |
8.1.6-preview-08 | 59 | 5/2/2024 |
8.1.6-preview-07 | 90 | 4/29/2024 |
8.1.6-preview-06 | 105 | 4/26/2024 |
8.1.6-preview-05 | 93 | 4/24/2024 |
8.1.6-preview-04 | 92 | 4/22/2024 |
8.1.6-preview-03 | 93 | 4/22/2024 |
8.1.6-preview-02 | 87 | 4/17/2024 |
8.1.6-preview-01 | 74 | 4/15/2024 |
8.1.5 | 109 | 4/15/2024 |
8.1.5-preview-15 | 87 | 4/10/2024 |
8.1.5-preview-14 | 104 | 3/20/2024 |
8.1.5-preview-13 | 83 | 3/18/2024 |
8.1.5-preview-12 | 110 | 3/13/2024 |
8.1.5-preview-11 | 86 | 3/13/2024 |
8.1.5-preview-10 | 119 | 3/13/2024 |
8.1.5-preview-09 | 64 | 3/12/2024 |
8.1.5-preview-08 | 87 | 3/12/2024 |
8.1.5-preview-07 | 99 | 3/8/2024 |
8.1.5-preview-06 | 80 | 3/8/2024 |
8.1.5-preview-05 | 93 | 3/7/2024 |
8.1.5-preview-04 | 104 | 3/7/2024 |
8.1.5-preview-03 | 74 | 3/7/2024 |
8.1.5-preview-02 | 81 | 2/28/2024 |
8.1.5-preview-01 | 81 | 2/19/2024 |
8.1.4 | 132 | 2/15/2024 |
8.1.3 | 121 | 2/13/2024 |
8.1.3-preview-07 | 92 | 2/13/2024 |
8.1.3-preview-06 | 87 | 2/12/2024 |
8.1.3-preview-05 | 88 | 2/9/2024 |
8.1.3-preview-04 | 91 | 2/8/2024 |
8.1.3-preview-03 | 101 | 2/7/2024 |
8.1.3-preview-02 | 85 | 2/2/2024 |
8.1.3-preview-01 | 68 | 2/2/2024 |
8.1.2 | 135 | 2/1/2024 |
8.1.2-preview-9 | 93 | 1/22/2024 |
8.1.2-preview-8 | 82 | 1/19/2024 |
8.1.2-preview-7 | 73 | 1/19/2024 |
8.1.2-preview-6 | 83 | 1/19/2024 |
8.1.2-preview-5 | 74 | 1/19/2024 |
8.1.2-preview-4 | 84 | 1/19/2024 |
8.1.2-preview-3 | 87 | 1/18/2024 |
8.1.2-preview-2 | 84 | 1/18/2024 |
8.1.2-preview-16 | 79 | 1/31/2024 |
8.1.2-preview-15 | 88 | 1/31/2024 |
8.1.2-preview-14 | 115 | 1/25/2024 |
8.1.2-preview-13 | 93 | 1/25/2024 |
8.1.2-preview-12 | 84 | 1/23/2024 |
8.1.2-preview-11 | 89 | 1/23/2024 |
8.1.2-preview-10 | 82 | 1/22/2024 |
8.1.2-preview-1 | 85 | 1/18/2024 |
8.1.1 | 126 | 1/18/2024 |
8.1.0 | 93 | 1/18/2024 |
8.0.3 | 121 | 12/29/2023 |
8.0.1 | 127 | 12/14/2023 |
8.0.0 | 130 | 12/7/2023 |
6.0.4.3 | 149 | 12/29/2023 |
6.0.4.2 | 115 | 12/20/2023 |
6.0.4.1 | 73 | 12/19/2023 |
6.0.4 | 135 | 12/4/2023 |
6.0.3.20 | 110 | 11/27/2023 |
6.0.3.19 | 123 | 11/22/2023 |