You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
449 B
17 lines
449 B
from __future__ import annotations
|
|
from pydantic import BaseModel, Field
|
|
|
|
|
|
class SegmentDefinition(BaseModel):
|
|
name: str
|
|
description: str
|
|
count: int | None = None
|
|
|
|
|
|
class ScenarioBrief(BaseModel):
|
|
world_description: str
|
|
rules_or_context: list[str] = Field(default_factory=list)
|
|
proposed_change: str | None = None
|
|
target_segments: list[SegmentDefinition] | None = None
|
|
population: int = 25
|
|
duration_days: int = 90
|
|
|