Model for requesting a wiki export.
| 110 | model: str |
| 111 | |
| 112 | class 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 --- |
| 121 | class Model(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected