Raised when an upstream call fails.
| 411 | """Raised when a backend fails.""" |
| 412 | |
| 413 | class SwitchyardUpstreamError(SwitchyardRuntimeError): |
| 414 | """Raised when an upstream call fails.""" |
| 415 | |
| 416 | status_code: int |
| 417 | body: str |
| 418 | |
| 419 | class SwitchyardContextWindowExceededError(SwitchyardBackendError): |
| 420 | """Raised when an upstream request exceeds the context window.""" |
no outgoing calls