"""Parallel, specialist-agent pipeline isolated from the Classic runner.""" def run_agent_pipeline(*args, **kwargs): """Lazy package-level entry point that avoids importing optional runtime deps.""" from backend.agents.runner import run_agent_pipeline as _run return _run(*args, **kwargs) __all__ = ["run_agent_pipeline"]