Wire specialist waves, Brain consolidation, and Classic-compatible reports so Agent mode can run end-to-end via OpenRouter without changing the default Classic path. Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
338 B
Python
11 lines
338 B
Python
"""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"]
|