DrGabrielLopez's picture
resolved random issue
520c904
raw
history blame contribute delete
282 Bytes
from pydantic import BaseModel
class Player(BaseModel):
name: str
sex: str
type: str
skills: list[str]
class Player(BaseModel):
name: str
sex: str
type: str
skills: list[str]
class TechSpecs(BaseModel):
narrator_voice: str
image_model: str
game_lenght: int