Link the summary page back to every related concept (no LLM call).
(wiki_dir: Path, doc_name: str, concept_slugs: list[str])
| 1264 | |
| 1265 | |
| 1266 | def _backlink_summary(wiki_dir: Path, doc_name: str, concept_slugs: list[str]) -> None: |
| 1267 | """Link the summary page back to every related concept (no LLM call).""" |
| 1268 | _backlink_summary_pages( |
| 1269 | wiki_dir, |
| 1270 | doc_name, |
| 1271 | concept_slugs, |
| 1272 | page_dir="concepts", |
| 1273 | section="## Related Concepts", |
| 1274 | ) |
| 1275 | |
| 1276 | |
| 1277 | def _backlink_concepts(wiki_dir: Path, doc_name: str, concept_slugs: list[str]) -> None: |