# -*- coding: utf-8 -*- """Core pipeline and orchestration logic. Keep ``pipeline_runner`` behind lazy wrappers so importing ``backend.core`` does not immediately pull in the gateway runtime graph. """ from .pipeline import TradingPipeline from .state_sync import StateSync def create_agents(*args, **kwargs): from .pipeline_runner import create_agents as _create_agents return _create_agents(*args, **kwargs) def create_long_term_memory(*args, **kwargs): from .pipeline_runner import create_long_term_memory as _create_long_term_memory return _create_long_term_memory(*args, **kwargs) def stop_gateway(*args, **kwargs): from .pipeline_runner import stop_gateway as _stop_gateway return _stop_gateway(*args, **kwargs) __all__ = [ "TradingPipeline", "StateSync", "create_agents", "create_long_term_memory", "stop_gateway", ]