1
0
Fork 0
taleweave-ai/taleweave/models/files.py

16 lines
201 B
Python
Raw Permalink Normal View History

2024-05-09 02:11:16 +00:00
from typing import List
from .base import dataclass
@dataclass
class WorldPrompt:
name: str
theme: str
flavor: str = ""
@dataclass
class TemplateFile:
templates: List[WorldPrompt]