File tree Expand file tree Collapse file tree 9 files changed +24
-11
lines changed
Expand file tree Collapse file tree 9 files changed +24
-11
lines changed Original file line number Diff line number Diff line change 11{
2- "." : " 1.1.4 "
2+ "." : " 1.1.5 "
33}
Original file line number Diff line number Diff line change 11configured_endpoints : 6
22openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/sambanova%2Fsambanova-ffd18290466027997fc159de0a8c6abd8d1ec09744f51763b95c7af4567014ec.yml
33openapi_spec_hash : 9ba4aa66c83753d235943b470eaf36a3
4- config_hash : 59dfb724942eeb9c5dc372eb7e25d48a
4+ config_hash : 9f1b4105358ac5ce63dff795f3bd6162
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 1.1.5 (2025-10-24)
4+
5+ Full Changelog: [ v1.1.4...v1.1.5] ( https://github.com/sambanova/sambanova-python/compare/v1.1.4...v1.1.5 )
6+
7+ ### Bug Fixes
8+
9+ * ** api:** increase default timeouts ([ 5b4435e] ( https://github.com/sambanova/sambanova-python/commit/5b4435e3a77b4e5ebb6ab75060d02577720a7776 ) )
10+
11+
12+ ### Chores
13+
14+ * bump ` httpx-aiohttp ` version to 0.1.9 ([ e0aa167] ( https://github.com/sambanova/sambanova-python/commit/e0aa1677250d207aad2d8ed05519f81faee6910a ) )
15+
316## 1.1.4 (2025-10-10)
417
518Full Changelog: [ v1.1.3...v1.1.4] ( https://github.com/sambanova/sambanova-python/compare/v1.1.3...v1.1.4 )
Original file line number Diff line number Diff line change @@ -290,15 +290,15 @@ client.with_options(max_retries=5).chat.completions.create(
290290
291291### Timeouts
292292
293- By default requests time out after 1 minute . You can configure this with a ` timeout ` option,
293+ By default requests time out after 10 minutes . You can configure this with a ` timeout ` option,
294294which accepts a float or an [ ` httpx.Timeout ` ] ( https://www.python-httpx.org/advanced/timeouts/#fine-tuning-the-configuration ) object:
295295
296296``` python
297297from sambanova import SambaNova
298298
299299# Configure the default for all requests:
300300client = SambaNova(
301- # 20 seconds (default is 1 minute )
301+ # 20 seconds (default is 10 minutes )
302302 timeout = 20.0 ,
303303)
304304
Original file line number Diff line number Diff line change 11[project ]
22name = " sambanova"
3- version = " 1.1.4 "
3+ version = " 1.1.5 "
44description = " The official Python library for the SambaNova API"
55dynamic = [" readme" ]
66license = " Apache-2.0"
@@ -39,7 +39,7 @@ Homepage = "https://github.com/sambanova/sambanova-python"
3939Repository = " https://github.com/sambanova/sambanova-python"
4040
4141[project .optional-dependencies ]
42- aiohttp = [" aiohttp" , " httpx_aiohttp>=0.1.8 " ]
42+ aiohttp = [" aiohttp" , " httpx_aiohttp>=0.1.9 " ]
4343
4444[tool .rye ]
4545managed = true
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ httpx==0.28.1
5656 # via httpx-aiohttp
5757 # via respx
5858 # via sambanova
59- httpx-aiohttp==0.1.8
59+ httpx-aiohttp==0.1.9
6060 # via sambanova
6161idna==3.4
6262 # via anyio
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ httpcore==1.0.9
4343httpx==0.28.1
4444 # via httpx-aiohttp
4545 # via sambanova
46- httpx-aiohttp==0.1.8
46+ httpx-aiohttp==0.1.9
4747 # via sambanova
4848idna==3.4
4949 # via anyio
Original file line number Diff line number Diff line change 55RAW_RESPONSE_HEADER = "X-Stainless-Raw-Response"
66OVERRIDE_CAST_TO_HEADER = "____stainless_override_cast_to"
77
8- # default timeout is 1 minute
9- DEFAULT_TIMEOUT = httpx .Timeout (timeout = 60 , connect = 5.0 )
8+ # default timeout is 10 minutes
9+ DEFAULT_TIMEOUT = httpx .Timeout (timeout = 600 , connect = 5.0 )
1010DEFAULT_MAX_RETRIES = 2
1111DEFAULT_CONNECTION_LIMITS = httpx .Limits (max_connections = 100 , max_keepalive_connections = 20 )
1212
Original file line number Diff line number Diff line change 11# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22
33__title__ = "sambanova"
4- __version__ = "1.1.4 " # x-release-please-version
4+ __version__ = "1.1.5 " # x-release-please-version
You can’t perform that action at this time.
0 commit comments