Spaces:
Runtime error
Runtime error
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 | |