Files
rag-manager/ingest_pipeline/flows/__init__.py
2025-09-21 10:25:54 +00:00

10 lines
221 B
Python

"""Prefect flows for orchestration."""
from .ingestion_flows import create_ingestion_flow
from .scheduler import create_scheduled_deployment
__all__ = [
"create_ingestion_flow",
"create_scheduled_deployment",
]