Agentic_RAG / merge_chunks.py
Oleksii Obolonskyi
Initial commit
d10c06c
raw
history blame contribute delete
241 Bytes
#!/usr/bin/env python3
"""Compatibility wrapper for scripts/merge_chunks.py."""
from pathlib import Path
import runpy
SCRIPT = Path(__file__).resolve().parent / "scripts" / "merge_chunks.py"
runpy.run_path(str(SCRIPT), run_name="__main__")