mirror of
https://github.com/neonbjb/tortoise-tts.git
synced 2026-01-20 15:40:37 +01:00
8 lines
152 B
Python
8 lines
152 B
Python
from pydantic import BaseModel
|
|
|
|
class TranscriptionRequest(BaseModel):
|
|
text: str
|
|
voice: str
|
|
output_path: str
|
|
preset: str = "ultra_fast"
|