Фикс состояния

This commit is contained in:
2026-03-12 16:55:23 +03:00
parent 417b8b6f72
commit 6ba0a18ac9
1445 changed files with 620025 additions and 885 deletions

View File

@@ -0,0 +1 @@
# CLI entrypoints for pipeline_setup_v3.

View File

@@ -0,0 +1,22 @@
from __future__ import annotations
import sys
from pathlib import Path
_agent_root = Path(__file__).resolve().parents[3]
if str(_agent_root) not in sys.path:
sys.path.insert(0, str(_agent_root))
_src = _agent_root / "src"
if _src.exists() and str(_src) not in sys.path:
sys.path.insert(0, str(_src))
def main() -> int:
argv = ["reindex", *sys.argv[1:]]
from tests.pipeline_setup.suite_02_pipeline.pipeline_intent_rag.cli import main as cli_main
return cli_main(argv)
if __name__ == "__main__":
raise SystemExit(main())