Роутер работает нормально в process v2

This commit is contained in:
2026-04-07 14:09:51 +03:00
parent 0a25e42ea1
commit 8b7b72967e
1746 changed files with 216414 additions and 14037 deletions
+7
View File
@@ -21,6 +21,12 @@ def main(argv: list[str] | None = None) -> int:
parser.add_argument("--run-name", default="manual_run", help="Output directory prefix")
parser.add_argument("--results-dir", default=None, help="Override results root directory")
parser.add_argument("--pipeline-mode", default="full", choices=["full", "pre_llm_only"], help="Pipeline execution mode")
parser.add_argument(
"--workflow-llm-enabled",
default="true",
choices=["true", "false"],
help="Enable or disable final workflow LLM calls where supported",
)
parser.add_argument(
"--router-llm-mode",
default="deterministic",
@@ -39,6 +45,7 @@ def main(argv: list[str] | None = None) -> int:
run_name=str(ns.run_name).strip() or "manual_run",
pipeline_mode=str(ns.pipeline_mode).strip() or "full",
router_llm_mode=str(ns.router_llm_mode).strip() or "deterministic",
workflow_llm_enabled=str(ns.workflow_llm_enabled).strip().lower() == "true",
)
print(f"Cases dir: {cases_dir}")
print(f"Run dir: {runner.run_dir}")