MCPcopy
hub / github.com/safishamsi/graphify / reprocess_all

Function reprocess_all

worked/example/raw/processor.py:64–71  ·  view source on GitHub ↗

Re-enrich all records in the index. Returns count of records updated.

()

Source from the content-addressed store, hash-verified

62
63
64def reprocess_all() -> int:
65 """Re-enrich all records in the index. Returns count of records updated."""
66 index = load_index()
67 count = 0
68 for record_id, doc in index.items():
69 process_and_save(doc)
70 count += 1
71 return count

Callers

nothing calls this directly

Calls 3

load_indexFunction · 0.90
process_and_saveFunction · 0.85
itemsMethod · 0.45

Tested by

no test coverage detected