Spaces:
Runtime error
Runtime error
from typing import List, Optional, Union | |
from pydantic import BaseModel, Field, field_validator | |
class PhonemeRequest(BaseModel): | |
text: str | |
language: str = "a" # Default to American English | |
class PhonemeResponse(BaseModel): | |
phonemes: str | |
tokens: list[int] | |
class StitchOptions(BaseModel): | |
"""Options for stitching audio chunks together""" | |
gap_method: str = Field( | |
default="static_trim", | |
description="Method to handle gaps between chunks. Currently only 'static_trim' supported.", | |
) | |
trim_ms: int = Field( | |
default=0, | |
ge=0, | |
description="Milliseconds to trim from chunk boundaries when using static_trim", | |
) | |
def validate_gap_method(cls, v: str) -> str: | |
if v != "static_trim": | |
raise ValueError("Currently only 'static_trim' gap method is supported") | |
return v | |
class GenerateFromPhonemesRequest(BaseModel): | |
"""Simple request for phoneme-to-speech generation""" | |
phonemes: str = Field(..., description="Phoneme string to synthesize") | |
voice: str = Field(..., description="Voice ID to use for generation") | |