feat: Add Document Processing packages (MEDI)#3
Closed
luisquintanilla wants to merge 4 commits into
Closed
Conversation
… DataIngestion) Port intelligent PDF ingestion packages from luisquintanilla/PdfPig (feature/intelligent-pdf-ingestion branch, PRs #1 and #2) into the AI Community Toolkit as a new MEDI top-level feature area. New packages: - CommunityToolkit.DocumentProcessing.PdfPig.OnnxLayoutAnalysis ONNX-based layout detection (RT-DETR, configurable models, image preprocessing, NMS) implementing PdfPig IPageSegmenter - CommunityToolkit.DocumentProcessing.PdfPig.DataIngestion MEDI bridge with vision LLM enrichers (OCR, table extraction, contextual chunking) for PDF document ingestion Infrastructure: - MEDI/ directory structure following MEVD pattern - Directory.Build.props for src and test - Central package management updates - MEDI.slnf solution filter - medi.yml CI workflow - nuget.config with source mapping for dotnet-public feed Test results: 216 total (213 passed, 3 skipped for missing ONNX model) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
|
Hey @luisquintanilla, will wait until all the setup/release stuff is done for MEVD, and then will review/help get this merged! |
This was referenced May 5, 2026
…d.PdfPig 0.1.15
The UglyToad.PdfPig{,.Core,.DocumentLayoutAnalysis} 0.1.15 pins do not exist on
nuget.org (max stable is the canonical PdfPig 0.1.14, which bundles the Core and
DocumentLayoutAnalysis namespaces), so restore fails on a clean nuget.org feed.
Collapse the three references to the single canonical PdfPig package.
…ctions 10.7.0, DI.Abstractions 10.0.9)
MEDI 10.7.0-preview.1.26309.5 is published on nuget.org, so the dotnet-public Azure DevOps source mapping for Microsoft.Extensions.DataIngestion* is no longer needed. Removing it makes the package graph nuget.org-only (clean restore + build of all four PdfPig projects verified).
luisquintanilla
marked this pull request as draft
June 26, 2026 01:46
Author
|
Refreshed this branch:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds two new CommunityToolkit.DocumentProcessing packages as a new MEDI (Microsoft.Extensions.DataIngestion) top-level feature area, following the established MEVD pattern.
New Packages
IPageSegmenterOrigin
Ported from luisquintanilla/PdfPig (
feature/intelligent-pdf-ingestionbranch, PRs #1 and #2). See the investigation proposal for design rationale.Infrastructure
MEDI/directory structure mirroringMEVD/patternDirectory.Build.propsfor src and testDirectory.Packages.props) updatesMEDI.slnfsolution filtermedi.ymlCI workflownuget.configrestoring from nuget.org only (the MEDI previews are published there; the earlier dotnet-public feed mapping has been removed)Namespace Mapping
UglyToad.PdfPig.DocumentLayoutAnalysis.OnnxCommunityToolkit.DocumentProcessing.PdfPig.OnnxLayoutAnalysisUglyToad.PdfPig.DataIngestionCommunityToolkit.DocumentProcessing.PdfPig.DataIngestionTest Results