style: Format code for consistency and readability across TTS modules
This commit is contained in:
@@ -18,11 +18,11 @@ class TTSGenerateRequest(BaseModel):
|
||||
"""TTS generation request model."""
|
||||
|
||||
text: str = Field(
|
||||
..., min_length=1, max_length=1000, description="Text to convert to speech"
|
||||
..., min_length=1, max_length=1000, description="Text to convert to speech",
|
||||
)
|
||||
provider: str = Field(default="gtts", description="TTS provider to use")
|
||||
options: dict[str, Any] = Field(
|
||||
default_factory=dict, description="Provider-specific options"
|
||||
default_factory=dict, description="Provider-specific options",
|
||||
)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user