mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-26 23:34:47 +08:00
14 lines
323 B
Python
14 lines
323 B
Python
|
|
from typing import Literal
|
||
|
|
|
||
|
|
from pydantic import BaseModel, Field
|
||
|
|
|
||
|
|
|
||
|
|
class ScriptLine(BaseModel):
|
||
|
|
speaker: Literal["male", "female"] = Field(default="male")
|
||
|
|
text: str = Field(default="")
|
||
|
|
|
||
|
|
|
||
|
|
class Script(BaseModel):
|
||
|
|
locale: Literal["en", "zh"] = Field(default="en")
|
||
|
|
lines: list[ScriptLine] = Field(default=[])
|