Arag / app /services /rag_pipeline.py
AuthorBot
Refactor: 10/10 modularity β€” pipeline/ package, admin/routers/ split, guards single source of truth
685ab2e
Raw
History Blame Contribute Delete
420 Bytes
"""app/services/rag_pipeline.py β€” Compatibility shim.
This module has been refactored into the services/pipeline/ package.
This shim re-exports everything so existing imports continue to work
during the transition period.
DEPRECATED: Import directly from app.services.pipeline instead.
"""
from app.services.pipeline import ( # noqa: F401
run_pipeline,
PipelineResult,
invalidate_book_cache,
)