mindnet/app/core/ingestion.py

15 lines
686 B
Python

"""
FILE: app/core/ingestion.py
DESCRIPTION: Facade für das Ingestion-Package. Stellt 100% Abwärtskompatibilität sicher.
WP-14: Modularisierung der Ingestion-Pipeline abgeschlossen.
Nutzt interne Module mit 'ingestion_' Präfix für maximale Wartbarkeit.
VERSION: 2.13.0
STATUS: Active
"""
# Export der Hauptklasse für externe Module (z.B. scripts/import_markdown.py)
from .ingestion.ingestion_processor import IngestionService
# Export der Hilfsfunktionen für Abwärtskompatibilität
from .ingestion.ingestion_utils import extract_json_from_response, load_type_registry
__all__ = ["IngestionService", "extract_json_from_response", "load_type_registry"]