Encamina.Enmarcha.Data.Qdrant.Abstractions 8.1.5

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

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

Semantic Kernel - Abstractions

Nuget package

This project mainly contains abstractions used by other ENMARCHA NuGet packages. Additionally, it also includes some extension methods and utilities primarily related to Qdrant.

Setup

Nuget package

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

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

.NET CLI:

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

dotnet add package Encamina.Enmarcha.Data.Qdrant.Abstractions

How to use

In addition to the abstractions (interfaces, abstract classes, etc.) that have their implementations in other ENMARCHA NuGets, such as IQdrantSnapshotHandler/QdrantSnapshotHandler there are some utilities that can be used directly.

QdrantOptions

// ...
  "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.
  },
// ...

The above section is taken from a JSON file that is typically added to the appsettings.json. This provides the necessary configurations (QdrantOptions) for Qdrant.

Once these configurations are defined, they can be added to the application's configuration.

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();

HttpClientExtensions

This class provides some static methods to configure an HttpClient to be used with Qdrant.

// ...

// You probably want to get this in another way, for example, appsettings.json...
var localQdrantOptions = new QdrantOptions()
{
    Host = new Uri("http://localhost:6333/"),
    Port = 6333,
    VectorSize = 1536
};

httpClient.ConfigureHttpClientForQdrant(localQdrantOptions);

The previous code adds what is necessary (headers...) to be able to make requests to the Qdrant REST API.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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 (2)

Showing the top 2 NuGet packages that depend on Encamina.Enmarcha.Data.Qdrant.Abstractions:

Package Downloads
Encamina.Enmarcha.SemanticKernel.Connectors.Memory

Package Description

Encamina.Enmarcha.Data.Qdrant

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.1.6-preview-08 0 5/2/2024
8.1.6-preview-07 63 4/29/2024
8.1.6-preview-06 80 4/26/2024
8.1.6-preview-05 85 4/24/2024
8.1.6-preview-04 92 4/22/2024
8.1.6-preview-03 86 4/22/2024
8.1.6-preview-02 100 4/17/2024
8.1.6-preview-01 136 4/15/2024
8.1.5 81 4/15/2024
8.1.5-preview-15 91 4/10/2024
8.1.5-preview-14 103 3/20/2024
8.1.5-preview-13 80 3/18/2024
8.1.5-preview-12 91 3/13/2024
8.1.5-preview-11 74 3/13/2024
8.1.5-preview-10 87 3/13/2024
8.1.5-preview-09 68 3/12/2024
8.1.5-preview-08 81 3/12/2024
8.1.5-preview-07 86 3/8/2024
8.1.5-preview-06 192 3/8/2024
8.1.5-preview-05 74 3/7/2024
8.1.5-preview-04 81 3/7/2024
8.1.5-preview-03 94 3/7/2024
8.1.5-preview-02 135 2/28/2024
8.1.5-preview-01 127 2/19/2024
8.1.4 214 2/15/2024
8.1.3 116 2/13/2024
8.1.3-preview-07 62 2/13/2024
8.1.3-preview-06 81 2/12/2024
8.1.3-preview-05 71 2/9/2024
8.1.3-preview-04 76 2/8/2024
8.1.3-preview-03 79 2/7/2024
8.1.3-preview-02 84 2/2/2024
8.1.3-preview-01 69 2/2/2024
8.1.2 138 2/1/2024
8.1.2-preview-9 91 1/22/2024
8.1.2-preview-8 78 1/19/2024
8.1.2-preview-7 74 1/19/2024
8.1.2-preview-6 72 1/19/2024
8.1.2-preview-5 71 1/19/2024
8.1.2-preview-4 76 1/19/2024
8.1.2-preview-3 72 1/18/2024
8.1.2-preview-2 84 1/18/2024
8.1.2-preview-16 76 1/31/2024
8.1.2-preview-15 76 1/31/2024
8.1.2-preview-14 172 1/25/2024
8.1.2-preview-13 64 1/25/2024
8.1.2-preview-12 69 1/23/2024
8.1.2-preview-11 75 1/23/2024
8.1.2-preview-10 75 1/22/2024
8.1.2-preview-1 74 1/18/2024
8.1.1 114 1/18/2024
8.1.0 88 1/18/2024
8.0.3 129 12/29/2023
8.0.1 127 12/14/2023
8.0.0 133 12/7/2023
6.0.4.3 144 12/29/2023
6.0.4.2 134 12/20/2023
6.0.4.1 172 12/19/2023
6.0.4 139 12/4/2023
6.0.3.20 122 11/27/2023
6.0.3.19 122 11/22/2023