Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support sample_rate and opus_bitrate #7

Merged
merged 1 commit into from
Jan 8, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/fish_audio_sdk/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import decimal
from typing import Annotated, Generic, Literal, TypeVar

from pydantic import BaseModel, Field, conint
from pydantic import BaseModel, Field

Item = TypeVar("Item")

Expand All @@ -24,9 +24,11 @@ class Prosody(BaseModel):

class TTSRequest(BaseModel):
text: str
chunk_length: Annotated[int, conint(ge=100, le=300, strict=True)] = 200
chunk_length: Annotated[int, Field(ge=100, le=300, strict=True)] = 200
format: Literal["wav", "pcm", "mp3"] = "mp3"
sample_rate: int | None = None
mp3_bitrate: Literal[64, 128, 192] = 128
opus_bitrate: Literal[-1000, 24, 32, 48, 64] = 32
references: list[ReferenceAudio] = []
reference_id: str | None = None
normalize: bool = True
Expand Down
Loading