mirror of
https://github.com/thinking-machines-lab/tinker.git
synced 2026-04-22 16:49:00 +00:00
Sync contents
This commit is contained in:
parent
35a77e79fe
commit
f3c0b1f179
17 changed files with 2069 additions and 632 deletions
|
|
@ -121,6 +121,38 @@ class InternalServerError(APIStatusError)
|
|||
|
||||
HTTP 500+: An error occurred on the server.
|
||||
|
||||
## `SidecarError` Objects
|
||||
|
||||
```python
|
||||
class SidecarError(TinkerError)
|
||||
```
|
||||
|
||||
Base exception for subprocess sidecar errors.
|
||||
|
||||
## `SidecarStartupError` Objects
|
||||
|
||||
```python
|
||||
class SidecarStartupError(SidecarError)
|
||||
```
|
||||
|
||||
Raised when the sidecar subprocess fails to start or times out.
|
||||
|
||||
## `SidecarDiedError` Objects
|
||||
|
||||
```python
|
||||
class SidecarDiedError(SidecarError)
|
||||
```
|
||||
|
||||
Raised when the sidecar subprocess exits unexpectedly while requests are pending.
|
||||
|
||||
## `SidecarIPCError` Objects
|
||||
|
||||
```python
|
||||
class SidecarIPCError(SidecarError)
|
||||
```
|
||||
|
||||
Raised when communication with the sidecar subprocess fails.
|
||||
|
||||
## `RequestFailedError` Objects
|
||||
|
||||
```python
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue