Rag.NET.Api.Grpc 1.0.0

dotnet add package Rag.NET.Api.Grpc --version 1.0.0
                    
NuGet\Install-Package Rag.NET.Api.Grpc -Version 1.0.0
                    
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="Rag.NET.Api.Grpc" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rag.NET.Api.Grpc" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Rag.NET.Api.Grpc" />
                    
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 Rag.NET.Api.Grpc --version 1.0.0
                    
#r "nuget: Rag.NET.Api.Grpc, 1.0.0"
                    
#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 Rag.NET.Api.Grpc@1.0.0
                    
#: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=Rag.NET.Api.Grpc&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Rag.NET.Api.Grpc&version=1.0.0
                    
Install as a Cake Tool

Rag.NET.Api.Grpc

gRPC service for a Rag.NET pipeline: MapRagNetGrpcApi() exposes ingest, retrieve, ask (including server-streamed answers) and delete as a gRPC service with per-call API-key authentication.

Install

dotnet add package Rag.NET.Api.Grpc

Setup

using Rag.NET.Api.Grpc.DependencyInjection;
using Rag.NET.DependencyInjection;

var builder = WebApplication.CreateBuilder(args);

builder.Services.AddRagNet();  // configure your pipeline as usual
builder.Services.AddRagNetGrpcApi(o => o.ApiKeys = ["your-api-key"]);

var app = builder.Build();

app.MapRagNetGrpcApi();

app.Run();

Authentication is an explicit decision: AddRagNetGrpcApi throws at startup when RagGrpcApiOptions.ApiKeys is empty, unless you opt out deliberately with o.AllowAnonymous = true (for example behind a trusted gateway that authenticates upstream). Setting both at once is rejected as a contradiction. The interceptor also fails closed at call time — if the options end up with no keys and no opt-out, calls are refused with Unauthenticated rather than an accidentally open service.

Example

Any gRPC client can call the service; pair it with the Rag.NET.Api.Grpc.Client package on the consuming side to keep both ends typed against the same contract. From the command line:

grpcurl -H "x-api-key: your-api-key" \
  -d '{"query": "What changed in the Q4 report?"}' \
  rag-backend.internal:5001 ragnet.RagService/Ask

Full guide

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

Showing the top 1 NuGet packages that depend on Rag.NET.Api.Grpc:

Package Downloads
Rag.NET.Api.Grpc.Client

gRPC client for Rag.NET.Api.Grpc — implements IRagPipeline over gRPC

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 0 9/15/2026
0.1.0 111 8/11/2026