()
| 3153 | "body": str(node.get("body") or "")[:800], |
| 3154 | "keywords": node.get("keywords"), |
| 3155 | "file_path": node.get("file_path"), |
| 3156 | "metadata": _compact_wiki_metadata(node.get("metadata") or {}), |
| 3157 | "score": node.get("score"), |
| 3158 | "updated_at": node.get("updated_at"), |
| 3159 | } |
| 3160 | for node in nodes |
| 3161 | ] |
| 3162 | } |
| 3163 | |
| 3164 | |
| 3165 | def _configured_wiki_root() -> Optional[Path]: |
no test coverage detected