mirror of
https://github.com/thinking-machines-lab/tinker.git
synced 2026-04-19 12:58:01 +00:00
Sync contents
This commit is contained in:
parent
74c6b87e9d
commit
0622760140
3 changed files with 4 additions and 4 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{
|
||||||
"last_synced_sha": "86e62d735413be9272a40724e27feeff5e57a108",
|
"last_synced_sha": "ffa781c9432bd1afb73c278d253d0a7cd1b333d8",
|
||||||
"last_sync_time": "2025-12-02T20:53:58.487562"
|
"last_sync_time": "2025-12-03T01:00:03.831979"
|
||||||
}
|
}
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[project]
|
[project]
|
||||||
name = "tinker"
|
name = "tinker"
|
||||||
version = "0.6.2"
|
version = "0.6.3"
|
||||||
description = "The official Python SDK for the tinker API"
|
description = "The official Python SDK for the tinker API"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@ def is_retryable_status_code(status_code: int) -> bool:
|
||||||
@dataclass
|
@dataclass
|
||||||
class RetryConfig:
|
class RetryConfig:
|
||||||
max_connections: int = DEFAULT_CONNECTION_LIMITS.max_connections or 100
|
max_connections: int = DEFAULT_CONNECTION_LIMITS.max_connections or 100
|
||||||
progress_timeout: float = 30 * 60 # Very long straggler
|
progress_timeout: float = 120 * 60 # Very long straggler
|
||||||
retry_delay_base: float = INITIAL_RETRY_DELAY
|
retry_delay_base: float = INITIAL_RETRY_DELAY
|
||||||
retry_delay_max: float = MAX_RETRY_DELAY
|
retry_delay_max: float = MAX_RETRY_DELAY
|
||||||
jitter_factor: float = 0.25
|
jitter_factor: float = 0.25
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue