from pydantic import BaseModel class WikiPage(BaseModel): """ A wiki page that should be just straight up added to the wiki as is """ name: str body: str