Model for a wiki page.
| 38 | |
| 39 | # --- Pydantic Models --- |
| 40 | class WikiPage(BaseModel): |
| 41 | """ |
| 42 | Model for a wiki page. |
| 43 | """ |
| 44 | id: str |
| 45 | title: str |
| 46 | content: str |
| 47 | filePaths: List[str] |
| 48 | importance: str # Should ideally be Literal['high', 'medium', 'low'] |
| 49 | relatedPages: List[str] |
| 50 | |
| 51 | class ProcessedProjectEntry(BaseModel): |
| 52 | id: str # Filename |
nothing calls this directly
no outgoing calls
no test coverage detected