spitch 1.24.1__tar.gz → 1.25.0__tar.gz
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-1.25.0/.release-please-manifest.json +3 -0
- {spitch-1.24.1 → spitch-1.25.0}/CHANGELOG.md +13 -0
- {spitch-1.24.1 → spitch-1.25.0}/PKG-INFO +1 -1
- {spitch-1.24.1 → spitch-1.25.0}/pyproject.toml +1 -1
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_base_client.py +3 -3
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_version.py +1 -1
- spitch-1.24.1/.release-please-manifest.json +0 -3
- {spitch-1.24.1 → spitch-1.25.0}/.gitignore +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/CONTRIBUTING.md +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/LICENSE +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/README.md +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/SECURITY.md +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/api.md +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/bin/check-release-environment +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/bin/publish-pypi +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/examples/.keep +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/examples/example.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/mypy.ini +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/noxfile.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/release-please-config.json +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/requirements-dev.lock +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/requirements.lock +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/__init__.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_client.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_compat.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_constants.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_exceptions.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_files.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_models.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_qs.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_resource.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_response.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_streaming.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_types.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_utils/__init__.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_utils/_logs.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_utils/_proxy.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_utils/_reflection.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_utils/_streams.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_utils/_sync.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_utils/_transform.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_utils/_typing.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/_utils/_utils.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/lib/.keep +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/py.typed +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/resources/__init__.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/resources/speech.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/resources/text.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/types/__init__.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/types/speech_generate_params.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/types/speech_transcribe_params.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/types/speech_transcribe_response.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/types/text_tone_mark_params.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/types/text_tone_mark_response.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/types/text_translate_params.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/src/spitch/types/text_translate_response.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/tests/__init__.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/tests/api_resources/__init__.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/tests/api_resources/test_speech.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/tests/api_resources/test_text.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/tests/conftest.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/tests/sample_file.txt +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/tests/test_client.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/tests/test_deepcopy.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/tests/test_extract_files.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/tests/test_files.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/tests/test_models.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/tests/test_qs.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/tests/test_required_args.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/tests/test_response.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/tests/test_streaming.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/tests/test_transform.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/tests/test_utils/test_proxy.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/tests/test_utils/test_typing.py +0 -0
- {spitch-1.24.1 → spitch-1.25.0}/tests/utils.py +0 -0
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.25.0 (2025-04-14)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.24.1...v1.25.0](https://github.com/spi-tch/spitch-python/compare/v1.24.1...v1.25.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* Update _base_client.py ([dca19f3](https://github.com/spi-tch/spitch-python/commit/dca19f316d3d1b59aa39012618c6700e8236c4a3))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **api:** updates for https client ([dca19f3](https://github.com/spi-tch/spitch-python/commit/dca19f316d3d1b59aa39012618c6700e8236c4a3))
|
|
15
|
+
|
|
3
16
|
## 1.24.1 (2025-04-14)
|
|
4
17
|
|
|
5
18
|
Full Changelog: [v1.24.0...v1.24.1](https://github.com/spi-tch/spitch-python/compare/v1.24.0...v1.24.1)
|
|
@@ -1354,9 +1354,9 @@ class AsyncAPIClient(BaseClient[httpx.AsyncClient, AsyncStream[Any]]):
|
|
|
1354
1354
|
base_url=base_url,
|
|
1355
1355
|
# cast to a valid type because mypy doesn't understand our type narrowing
|
|
1356
1356
|
timeout=cast(Timeout, timeout),
|
|
1357
|
-
proxies=proxies,
|
|
1358
|
-
transport=transport,
|
|
1359
|
-
limits=limits,
|
|
1357
|
+
# proxies=proxies,
|
|
1358
|
+
# transport=transport,
|
|
1359
|
+
# limits=limits,
|
|
1360
1360
|
follow_redirects=True,
|
|
1361
1361
|
)
|
|
1362
1362
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|