This commit is contained in:
neutrino2211
2025-12-19 20:41:08 +01:00
commit b847133df2
15 changed files with 4307 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
"""PDF to KCF - CLI tool for parsing PDFs and extracting structured insights."""
from .models import (
ContentInsight,
ContentInsightAttribute,
ContentInsightType,
PageContent,
PageContentAnalysis,
)
from .pdf_reader import PDFDocument
from .agent import DocumentAnalyzer
__all__ = [
"ContentInsight",
"ContentInsightAttribute",
"ContentInsightType",
"PageContent",
"PageContentAnalysis",
"PDFDocument",
"DocumentAnalyzer",
]