Function
write_jsonl
(path: Path, rows: Iterable[Dict[str, Any]])
Source from the content-addressed store, hash-verified
| 137 | |
| 138 | |
| 139 | def write_jsonl(path: Path, rows: Iterable[Dict[str, Any]]) -> None: |
| 140 | with path.open("w", encoding="utf-8") as handle: |
| 141 | for row in rows: |
| 142 | handle.write(json.dumps(row, ensure_ascii=False, sort_keys=True) + "\n") |
| 143 | |
| 144 | |
| 145 | def markdown_summary(rows: List[Dict[str, Any]], args: argparse.Namespace, model_load_seconds: float) -> str: |
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…