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

Class WikiExportRequest

api/api.py:112–118  ·  view source on GitHub ↗

Model for requesting a wiki export.

Source from the content-addressed store, hash-verified

110 model: str
111
112class WikiExportRequest(BaseModel):
113 """
114 Model for requesting a wiki export.
115 """
116 repo_url: str = Field(..., description="URL of the repository")
117 pages: List[WikiPage] = Field(..., description="List of wiki pages to export")
118 format: Literal["markdown", "json"] = Field(..., description="Export format (markdown or json)")
119
120# --- Model Configuration Models ---
121class Model(BaseModel):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected