Skip to content

Commit 059bed5

Browse files
committed
Expose Prosody PaginatedResponse ModelEntity (#9)
- Expose ModelEntity class to users of the SDK to facilitate processing info about voice models - Expose PaginatedResponse to facilitate processing of return of list_models API endpoint - Expose Prosody to allow control of volume gain and speed multiplier on TTS jobs Signed-off-by: Ahmed Mansour <[email protected]>
1 parent 6f0e8f4 commit 059bed5

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

Diff for: src/fish_audio_sdk/__init__.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from .apis import Session
22
from .exceptions import HttpCodeErr
3-
from .schemas import ASRRequest, TTSRequest, ReferenceAudio
3+
from .schemas import ASRRequest, TTSRequest, ReferenceAudio, Prosody, PaginatedResponse, ModelEntity, APICreditEntity, StartEvent, TextEvent, CloseEvent
44
from .websocket import WebSocketSession, AsyncWebSocketSession
55

66
__all__ = [
@@ -11,4 +11,11 @@
1111
"ASRRequest",
1212
"WebSocketSession",
1313
"AsyncWebSocketSession",
14+
"Prosody",
15+
"PaginatedResponse",
16+
"ModelEntity",
17+
"APICreditEntity",
18+
"StartEvent",
19+
"TextEvent",
20+
"CloseEvent",
1421
]

0 commit comments

Comments
 (0)