Mostlylucid.LucidRAG.Readers.Docling
2.7.5
dotnet add package Mostlylucid.LucidRAG.Readers.Docling --version 2.7.5
NuGet\Install-Package Mostlylucid.LucidRAG.Readers.Docling -Version 2.7.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="Mostlylucid.LucidRAG.Readers.Docling" Version="2.7.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Mostlylucid.LucidRAG.Readers.Docling" Version="2.7.5" />
<PackageReference Include="Mostlylucid.LucidRAG.Readers.Docling" />
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 Mostlylucid.LucidRAG.Readers.Docling --version 2.7.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Mostlylucid.LucidRAG.Readers.Docling, 2.7.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.
#:package Mostlylucid.LucidRAG.Readers.Docling@2.7.5
#: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=Mostlylucid.LucidRAG.Readers.Docling&version=2.7.5
#tool nuget:?package=Mostlylucid.LucidRAG.Readers.Docling&version=2.7.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Mostlylucid.LucidRAG.Readers.Docling
Docling-based document reader for the Summarizers pipeline.
Features
- OCR Support: Handles scanned PDFs and images via Docling service
- Layout Analysis: Structure-aware extraction preserving document hierarchy
- Table Extraction: High-quality table extraction from complex layouts
- Multi-Format: Supports PDF, DOCX, and other formats through Docling
- Word Count: Zero-allocation word counting for extracted content
Prerequisites
Requires a running Docling service instance. Configure the endpoint URL via options.
Usage
services.AddDoclingReader(options =>
{
options.EndpointUrl = "http://localhost:5001";
});
var reader = serviceProvider.GetRequiredService<IDocumentReader>();
var result = await reader.ReadAsync("scanned-document.pdf");
Supported Extensions
.pdf.docx.pptx.html
Dependencies
- Docling service (external)
- Mostlylucid.LucidRAG.DoomSummarizer.Core - IDocumentReader interface
License
MIT
| Product | Versions 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.
-
net10.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.5)
- Microsoft.Extensions.Http (>= 10.0.5)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.5)
- Mostlylucid.LucidRAG.DoomSummarizer.Core (>= 2.7.5)
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 |
|---|---|---|
| 2.7.5 | 129 | 3/30/2026 |
| 2.7.4 | 107 | 3/30/2026 |
| 2.7.3 | 107 | 3/30/2026 |
| 2.7.1 | 118 | 3/29/2026 |
| 2.7.0 | 112 | 3/29/2026 |
| 2.6.0 | 110 | 3/29/2026 |
| 2.5.0-alpha0 | 113 | 2/10/2026 |
| 2.1.0 | 123 | 2/9/2026 |
| 2.1.0-preview2 | 115 | 2/9/2026 |
| 2.0.1-rc0 | 120 | 2/9/2026 |
| 1.1.1 | 119 | 2/4/2026 |
| 1.0.0 | 119 | 2/4/2026 |
| 1.0.0-rc6 | 115 | 2/4/2026 |
| 1.0.0-rc5 | 116 | 2/3/2026 |
| 1.0.0-rc4 | 119 | 2/3/2026 |
| 1.0.0-rc2 | 119 | 2/3/2026 |
Initial release.
Docling-based document reading with OCR, layout analysis, and table extraction.