fix(rag/ingest): drop print() in main() — INFO log already covers it (AGENTS.md §3)
Browse files- src/rag/ingest.py +2 -2
src/rag/ingest.py
CHANGED
|
@@ -77,8 +77,8 @@ def main() -> None:
|
|
| 77 |
args = sys.argv[1:]
|
| 78 |
inp = Path(args[0]) if len(args) >= 1 else _DEFAULT_INPUT
|
| 79 |
out = Path(args[1]) if len(args) >= 2 else _DEFAULT_OUTPUT
|
| 80 |
-
|
| 81 |
-
|
| 82 |
|
| 83 |
|
| 84 |
if __name__ == "__main__":
|
|
|
|
| 77 |
args = sys.argv[1:]
|
| 78 |
inp = Path(args[0]) if len(args) >= 1 else _DEFAULT_INPUT
|
| 79 |
out = Path(args[1]) if len(args) >= 2 else _DEFAULT_OUTPUT
|
| 80 |
+
ingest_directory(inp, out)
|
| 81 |
+
# Per-call summary already logged at INFO inside ingest_directory; no print() in src/.
|
| 82 |
|
| 83 |
|
| 84 |
if __name__ == "__main__":
|