CoolFace
Apppublic

VTdevelops/bond-text-extraction

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
__init__.py18 linesDownload Raw Back to text_extraction
1"""Core package for extracting bond data from PDF documents via LLM."""2 3from dotenv import load_dotenv4 5load_dotenv()6 7from .gradio_app import build_interface as build_gradio_interface8from .gradio_app import launch as launch_gradio9from .models import BondRecord10from .pipeline import ExtractionPipeline11 12__all__ = [13    "BondRecord",14    "ExtractionPipeline",15    "build_gradio_interface",16    "launch_gradio",17]18