| 4 | |
| 5 | @dataclass |
| 6 | class CodeWikiDeps: |
| 7 | absolute_docs_path: str |
| 8 | absolute_repo_path: str |
| 9 | registry: dict |
| 10 | components: dict[str, Node] |
| 11 | path_to_current_module: list[str] |
| 12 | current_module_name: str |
| 13 | module_tree: dict[str, any] |
| 14 | max_depth: int |
| 15 | current_depth: int |
| 16 | config: Config # LLM configuration |
| 17 | custom_instructions: str = None |
no outgoing calls
no test coverage detected