MCPcopy Create free account
hub / github.com/OpenRaiser/PaperFlow / write_jsonl

Function write_jsonl

experiments/baselines/discourse_aware/runner.py:179–183  ·  view source on GitHub ↗
(path: Path, rows: Iterable[Dict[str, Any]])

Source from the content-addressed store, hash-verified

177
178
179def write_jsonl(path: Path, rows: Iterable[Dict[str, Any]]) -> None:
180 path.parent.mkdir(parents=True, exist_ok=True)
181 with path.open("w", encoding="utf-8") as handle:
182 for row in rows:
183 handle.write(json.dumps(row, ensure_ascii=False) + "\n")
184
185
186def load_json(path: Path) -> Dict[str, Any]:

Callers 1

run_baselineFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected