| 23 | |
| 24 | @dataclass(frozen=True) |
| 25 | class TaskTemplateSpec: |
| 26 | template_id: str |
| 27 | template_type: str |
| 28 | slots: tuple[TaskTemplateSlotSpec, ...] |
| 29 | allowed_relations: tuple[str, ...] = ("in",) |
| 30 | primary_goal_relation: str = "in" |
| 31 | fail_relations: tuple[str, ...] = ("in", "on") |
| 32 | |
| 33 | |
| 34 | @dataclass(frozen=True) |