mirror of
https://github.com/neonbjb/tortoise-tts.git
synced 2026-04-21 06:14:04 +00:00
8 lines
187 B
Python
8 lines
187 B
Python
|
|
from pydantic import BaseModel
|
||
|
|
|
||
|
|
class TranscriptionRequest(BaseModel):
|
||
|
|
text: str
|
||
|
|
voice: str
|
||
|
|
output_path: str
|
||
|
|
preset: str = "ultra_fast"
|
||
|
|
container_name: str = "tts-app"
|