Files
content-ingestion-agent/kab_ingestion/__init__.py
Jonathan Boniface d8a4b6b3c1
Some checks failed
quality-gates / verify (push) Failing after 7s
fix: files manually
2026-09-01 17:21:58 +01:00

34 lines
661 B
Python

"""KAB content ingestion agent."""
from .models import (
ACL,
Change,
ConnectorConfig,
Document,
IngestionRequest,
IngestionResult,
NormalizedDocument,
Provenance,
SourceDocument,
SyncCursor,
)
from .github import GitHubConnector
from .sharepoint import SharePointConnector
from .orchestrator import Orchestrator, RunResult
__all__ = [
"ACL",
"Change",
"ConnectorConfig",
"Document",
"GitHubConnector",
"IngestionRequest",
"IngestionResult",
"NormalizedDocument",
"Orchestrator",
"Provenance",
"RunResult",
"SharePointConnector",
"SourceDocument",
"SyncCursor",
]