CanDoItAll.AgentFramework.Rag.Qdrant 0.1.18

dotnet add package CanDoItAll.AgentFramework.Rag.Qdrant --version 0.1.18
                    
NuGet\Install-Package CanDoItAll.AgentFramework.Rag.Qdrant -Version 0.1.18
                    
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="CanDoItAll.AgentFramework.Rag.Qdrant" Version="0.1.18" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CanDoItAll.AgentFramework.Rag.Qdrant" Version="0.1.18" />
                    
Directory.Packages.props
<PackageReference Include="CanDoItAll.AgentFramework.Rag.Qdrant" />
                    
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 CanDoItAll.AgentFramework.Rag.Qdrant --version 0.1.18
                    
#r "nuget: CanDoItAll.AgentFramework.Rag.Qdrant, 0.1.18"
                    
#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.
#:package CanDoItAll.AgentFramework.Rag.Qdrant@0.1.18
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CanDoItAll.AgentFramework.Rag.Qdrant&version=0.1.18
                    
Install as a Cake Addin
#tool nuget:?package=CanDoItAll.AgentFramework.Rag.Qdrant&version=0.1.18
                    
Install as a Cake Tool

CanDoItAll Agent Framework RAG for Qdrant

CanDoItAll.AgentFramework.Rag.Qdrant implements the provider-neutral CanDoItAll RAG contracts with the official Qdrant.Client SDK. Qdrant SDK types remain inside this package.

Install

dotnet add package CanDoItAll.AgentFramework.Rag.Qdrant

Register

using CanDoItAll.AgentFramework.Rag.Driver.DependencyInjection;
using CanDoItAll.AgentFramework.Rag.Driver.Models;
using CanDoItAll.AgentFramework.Rag.Qdrant.DependencyInjection;

services.AddLocalHashingRagEmbeddingGenerator(
    options => options.Dimension = 384);

services.AddQdrantRagDriver(
    configureQdrant: options =>
    {
        options.Host = "localhost";
        options.Port = 6334;
    },
    configureFactory: options =>
    {
        options.DefaultCollection = new RagCollectionOptions
        {
            CollectionName = "candoitall-knowledge",
            VectorSize = 384,
            Distance = RagDistanceMetric.Cosine
        };
    });

Register an IRagEmbeddingGenerator whose output dimension matches the collection. The repository sample shows how to opt into deterministic local hashing for a self-contained demonstration; production applications should provide their model-backed embedding implementation.

Resolve IRagDriver for the configured default or IRagDriverFactory when the caller needs explicit factory options.

See the source repository for filtering, payload-index, tag, sample, and sandbox examples. The CanDoItAll project website is aicandoitall.com.

License

This package uses the repository's MIT License.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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
0.1.18 133 7/31/2026
0.1.17 94 7/30/2026
0.1.15 101 7/26/2026