# pyright: ignore
"""
Docling Page-by-Page PDF Converter

High-performance PDF to Markdown conversion with optimized GPU utilization.
"""

__version__ = "1.0.0"

from .converter import PDFConverter
from .pipelines import PipelineConfig

__all__ = ["PDFConverter", "PipelineConfig"]
