""" Application orchestrator — pipeline mode entry point. This module provides the main entry point for the application. The implementation has been refactored into the engine.app package. """ # Re-export from the new package structure from engine.app import main, run_pipeline_mode, run_pipeline_mode_direct __all__ = ["main", "run_pipeline_mode", "run_pipeline_mode_direct"] if __name__ == "__main__": main()