Model for the request body when saving wiki cache.
| 99 | model: Optional[str] = None |
| 100 | |
| 101 | class WikiCacheRequest(BaseModel): |
| 102 | """ |
| 103 | Model for the request body when saving wiki cache. |
| 104 | """ |
| 105 | repo: RepoInfo |
| 106 | language: str |
| 107 | wiki_structure: WikiStructureModel |
| 108 | generated_pages: Dict[str, WikiPage] |
| 109 | provider: str |
| 110 | model: str |
| 111 | |
| 112 | class WikiExportRequest(BaseModel): |
| 113 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected