(
self,
pool: ApiKeyPool,
*,
max_tokens: int = 4096,
timeout: float = 30.0,
max_retries: int = _MAX_RATE_LIMIT_RETRIES,
)
| 416 | """ |
| 417 | |
| 418 | def __init__( |
| 419 | self, |
| 420 | pool: ApiKeyPool, |
| 421 | *, |
| 422 | max_tokens: int = 4096, |
| 423 | timeout: float = 30.0, |
| 424 | max_retries: int = _MAX_RATE_LIMIT_RETRIES, |
| 425 | ) -> None: |
| 426 | self._pool = pool |
| 427 | self._max_tokens = max_tokens |
| 428 | self._timeout = timeout |
| 429 | self._max_retries = max_retries |
| 430 | |
| 431 | # -- Public API ----------------------------------------------------------- |
| 432 |
nothing calls this directly
no outgoing calls
no test coverage detected