MCPcopy Create free account
hub / github.com/AsyncFuncAI/deepwiki-open / WikiPage

Class WikiPage

api/api.py:40–49  ·  view source on GitHub ↗

Model for a wiki page.

Source from the content-addressed store, hash-verified

38
39# --- Pydantic Models ---
40class 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
51class ProcessedProjectEntry(BaseModel):
52 id: str # Filename

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected