Model for the data to be stored in the wiki cache.
| 88 | rootSections: Optional[List[str]] = None |
| 89 | |
| 90 | class WikiCacheData(BaseModel): |
| 91 | """ |
| 92 | Model for the data to be stored in the wiki cache. |
| 93 | """ |
| 94 | wiki_structure: WikiStructureModel |
| 95 | generated_pages: Dict[str, WikiPage] |
| 96 | repo_url: Optional[str] = None #compatible for old cache |
| 97 | repo: Optional[RepoInfo] = None |
| 98 | provider: Optional[str] = None |
| 99 | model: Optional[str] = None |
| 100 | |
| 101 | class WikiCacheRequest(BaseModel): |
| 102 | """ |
no outgoing calls
no test coverage detected