Spaces:
Runtime error
Runtime error
File size: 282 Bytes
0974473 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
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
|