spitch 1.2.0__py3-none-any.whl → 1.4.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of spitch might be problematic. Click here for more details.

spitch/_version.py CHANGED
@@ -1,4 +1,4 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  __title__ = "spitch"
4
- __version__ = "1.2.0" # x-release-please-version
4
+ __version__ = "1.4.0" # x-release-please-version
@@ -18,13 +18,17 @@ from .._utils import (
18
18
  from .._compat import cached_property
19
19
  from .._resource import SyncAPIResource, AsyncAPIResource
20
20
  from .._response import (
21
+ BinaryAPIResponse,
22
+ AsyncBinaryAPIResponse,
21
23
  StreamedBinaryAPIResponse,
22
24
  AsyncStreamedBinaryAPIResponse,
23
25
  to_raw_response_wrapper,
24
26
  to_streamed_response_wrapper,
25
27
  async_to_raw_response_wrapper,
28
+ to_custom_raw_response_wrapper,
26
29
  async_to_streamed_response_wrapper,
27
30
  to_custom_streamed_response_wrapper,
31
+ async_to_custom_raw_response_wrapper,
28
32
  async_to_custom_streamed_response_wrapper,
29
33
  )
30
34
  from .._base_client import make_request_options
@@ -57,7 +61,6 @@ class SpeechResource(SyncAPIResource):
57
61
  *,
58
62
  language: Literal["yo", "en", "ha", "ig"],
59
63
  text: str,
60
- stream: bool | NotGiven = NOT_GIVEN,
61
64
  voice: Literal["sade", "segun", "femi", "funmi"] | NotGiven = NOT_GIVEN,
62
65
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
63
66
  # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -65,7 +68,7 @@ class SpeechResource(SyncAPIResource):
65
68
  extra_query: Query | None = None,
66
69
  extra_body: Body | None = None,
67
70
  timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
68
- ) -> object:
71
+ ) -> BinaryAPIResponse:
69
72
  """
70
73
  Synthesize
71
74
 
@@ -78,6 +81,7 @@ class SpeechResource(SyncAPIResource):
78
81
 
79
82
  timeout: Override the client-level default timeout for this request, in seconds
80
83
  """
84
+ extra_headers = {"Accept": "audio/wav", **(extra_headers or {})}
81
85
  return self._post(
82
86
  "/v1/speech",
83
87
  body=maybe_transform(
@@ -89,13 +93,9 @@ class SpeechResource(SyncAPIResource):
89
93
  speech_generate_params.SpeechGenerateParams,
90
94
  ),
91
95
  options=make_request_options(
92
- extra_headers=extra_headers,
93
- extra_query=extra_query,
94
- extra_body=extra_body,
95
- timeout=timeout,
96
- query=maybe_transform({"stream": stream}, speech_generate_params.SpeechGenerateParams),
96
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
97
97
  ),
98
- cast_to=object,
98
+ cast_to=BinaryAPIResponse,
99
99
  )
100
100
 
101
101
  def transcibe(
@@ -171,7 +171,6 @@ class AsyncSpeechResource(AsyncAPIResource):
171
171
  *,
172
172
  language: Literal["yo", "en", "ha", "ig"],
173
173
  text: str,
174
- stream: bool | NotGiven = NOT_GIVEN,
175
174
  voice: Literal["sade", "segun", "femi", "funmi"] | NotGiven = NOT_GIVEN,
176
175
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
177
176
  # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -179,7 +178,7 @@ class AsyncSpeechResource(AsyncAPIResource):
179
178
  extra_query: Query | None = None,
180
179
  extra_body: Body | None = None,
181
180
  timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
182
- ) -> object:
181
+ ) -> AsyncBinaryAPIResponse:
183
182
  """
184
183
  Synthesize
185
184
 
@@ -192,6 +191,7 @@ class AsyncSpeechResource(AsyncAPIResource):
192
191
 
193
192
  timeout: Override the client-level default timeout for this request, in seconds
194
193
  """
194
+ extra_headers = {"Accept": "audio/wav", **(extra_headers or {})}
195
195
  return await self._post(
196
196
  "/v1/speech",
197
197
  body=await async_maybe_transform(
@@ -203,13 +203,9 @@ class AsyncSpeechResource(AsyncAPIResource):
203
203
  speech_generate_params.SpeechGenerateParams,
204
204
  ),
205
205
  options=make_request_options(
206
- extra_headers=extra_headers,
207
- extra_query=extra_query,
208
- extra_body=extra_body,
209
- timeout=timeout,
210
- query=await async_maybe_transform({"stream": stream}, speech_generate_params.SpeechGenerateParams),
206
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
211
207
  ),
212
- cast_to=object,
208
+ cast_to=AsyncBinaryAPIResponse,
213
209
  )
214
210
 
215
211
  async def transcibe(
@@ -264,8 +260,9 @@ class SpeechResourceWithRawResponse:
264
260
  def __init__(self, speech: SpeechResource) -> None:
265
261
  self._speech = speech
266
262
 
267
- self.generate = to_raw_response_wrapper(
263
+ self.generate = to_custom_raw_response_wrapper(
268
264
  speech.generate,
265
+ BinaryAPIResponse,
269
266
  )
270
267
  self.transcibe = to_raw_response_wrapper(
271
268
  speech.transcibe,
@@ -276,8 +273,9 @@ class AsyncSpeechResourceWithRawResponse:
276
273
  def __init__(self, speech: AsyncSpeechResource) -> None:
277
274
  self._speech = speech
278
275
 
279
- self.generate = async_to_raw_response_wrapper(
276
+ self.generate = async_to_custom_raw_response_wrapper(
280
277
  speech.generate,
278
+ AsyncBinaryAPIResponse,
281
279
  )
282
280
  self.transcibe = async_to_raw_response_wrapper(
283
281
  speech.transcibe,
@@ -12,6 +12,4 @@ class SpeechGenerateParams(TypedDict, total=False):
12
12
 
13
13
  text: Required[str]
14
14
 
15
- stream: bool
16
-
17
15
  voice: Literal["sade", "segun", "femi", "funmi"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: spitch
3
- Version: 1.2.0
3
+ Version: 1.4.0
4
4
  Summary: The official Python library for the spitch API
5
5
  Project-URL: Homepage, https://github.com/spi-tch/spitch-python
6
6
  Project-URL: Repository, https://github.com/spi-tch/spitch-python
@@ -11,7 +11,7 @@ spitch/_resource.py,sha256=TLFPcOOmtxZOQLh3XCNPB_BdrQpp0MIYoKoH52aRAu8,1100
11
11
  spitch/_response.py,sha256=aN6swtguiZ7CC_hWFrwoUa53FgSbjRfZXxYHvfDNGeo,28609
12
12
  spitch/_streaming.py,sha256=5SpId2EIfF8Ee8UUYmJxqgHUGP1ZdHCUHhHCdNJREFA,10100
13
13
  spitch/_types.py,sha256=dsJyGWdBXaYJaRBqn2V3iRsfpWw71rFaSxdSM8sPQYY,6103
14
- spitch/_version.py,sha256=ppV27oNFCTollcXLr72xRicR-tut-sjhbRZ2p34ocYw,158
14
+ spitch/_version.py,sha256=RzL9RBVz77WKIsv1tr8TayDCN1_DveJV26g_1D9K4IU,158
15
15
  spitch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  spitch/_utils/__init__.py,sha256=Uzq1-FIih_VUjzdNVWXks0sdC39KBKLMrZoz-_JOjJ4,1988
17
17
  spitch/_utils/_logs.py,sha256=ApRyYK_WgZfEr_ygBUBXWMlTgeMr2tdNOGlH8jE4oJc,774
@@ -24,13 +24,13 @@ spitch/_utils/_typing.py,sha256=tFbktdpdHCQliwzGsWysgn0P5H0JRdagkZdb_LegGkY,3838
24
24
  spitch/_utils/_utils.py,sha256=tYrr7IX-5NMwsVKbNggbzOM84uNw7XnAe06e2Ln8Or0,11472
25
25
  spitch/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
26
26
  spitch/resources/__init__.py,sha256=KT6rAvIlWHQk9QdM4Jp8ABziKILaBrrtiO7LCB5Wa5E,976
27
- spitch/resources/speech.py,sha256=CcrXiaQfilPEdvLh2YundmNcbTvJj7EgNVsFdf0I7rQ,11386
27
+ spitch/resources/speech.py,sha256=VJxU4pP1DObPB9gP5IkMPLN4IP6jGT5fbUJXlWAT23w,11388
28
28
  spitch/resources/text.py,sha256=xy7N1q5ioXVMtmcW6iOE8j8n9j4lvnpvO4jJ9FMZmsU,6071
29
29
  spitch/types/__init__.py,sha256=4aa9CgcCmGRqZb4k9F3005Q4Ok-zjiiqw5k3BXIQ3MY,364
30
- spitch/types/speech_generate_params.py,sha256=kNVcFxcIcImiLa8r4OEbzeIOqZNtkbSUek99t2ljhaI,425
30
+ spitch/types/speech_generate_params.py,sha256=xJPVX2uBsrLBMX4gQF9ydHG2PcIgau5PbBTO1eFccZk,407
31
31
  spitch/types/speech_transcibe_params.py,sha256=WvwBsSctqJDXOFJNYyjfijwCnAdJCPkJobESfmLy3aI,448
32
32
  spitch/types/text_tone_mark_params.py,sha256=63P5VElxanYkDP1ZLEuQt97JSgVpMCaAo4WRWLDvhlY,349
33
- spitch-1.2.0.dist-info/METADATA,sha256=CVCkjJbGIKDWZWcGc6yjmHD3GrkGELiNkLyCFe4mjJo,12392
34
- spitch-1.2.0.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
35
- spitch-1.2.0.dist-info/licenses/LICENSE,sha256=529F8Amq5MfoIm33JY544oweKES9vw9_xS1CNx-ztPI,11336
36
- spitch-1.2.0.dist-info/RECORD,,
33
+ spitch-1.4.0.dist-info/METADATA,sha256=VSjm1qoy8DwjpdsI5HRCwTPtQ-pEV_vQkeMNsuWnI0g,12392
34
+ spitch-1.4.0.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
35
+ spitch-1.4.0.dist-info/licenses/LICENSE,sha256=529F8Amq5MfoIm33JY544oweKES9vw9_xS1CNx-ztPI,11336
36
+ spitch-1.4.0.dist-info/RECORD,,
File without changes