mekosotto commited on
Commit
d3e290f
·
1 Parent(s): 460fcc2

fix(rag/ingest): drop print() in main() — INFO log already covers it (AGENTS.md §3)

Browse files
Files changed (1) hide show
  1. 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
- n = ingest_directory(inp, out)
81
- print(f"Indexed {n} chunks into {out}")
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__":