forked from phoenix/litellm-mirror
made correction in column names
This commit is contained in:
parent
bb473beceb
commit
011e976d24
1 changed files with 32 additions and 32 deletions
|
@ -40,38 +40,38 @@ To see how it's implemented - [check out the code](https://github.com/BerriAI/li
|
||||||
|
|
||||||
Base case - we return the original exception.
|
Base case - we return the original exception.
|
||||||
|
|
||||||
| LLM Provider | Returned Status Code |
|
| LLM Provider | Returned Exception |
|
||||||
| ------------- | --------------------- |
|
|---------------|-----------------------------|
|
||||||
| Anthropic | 400 |
|
| Anthropic | ContextWindowExceededError |
|
||||||
| Anthropic | 401 |
|
| Anthropic | AuthenticationError |
|
||||||
| Anthropic | 401 |
|
| Anthropic | AuthenticationError |
|
||||||
| Anthropic | 400 |
|
| Anthropic | InvalidRequestError |
|
||||||
| Anthropic | 429 |
|
| Anthropic | RateLimitError |
|
||||||
| OpenAI | 400 |
|
| OpenAI | ContextWindowExceededError |
|
||||||
| Replicate | 400 |
|
| Replicate | ContextWindowExceededError |
|
||||||
| Replicate | 401 |
|
| Replicate | AuthenticationError |
|
||||||
| Replicate | 400 |
|
| Replicate | InvalidRequestError |
|
||||||
| Replicate | 429 |
|
| Replicate | RateLimitError |
|
||||||
| Replicate | 500 |
|
| Replicate | ServiceUnavailableError |
|
||||||
| Cohere | 401 |
|
| Cohere | AuthenticationError |
|
||||||
| Cohere | 400 |
|
| Cohere | ContextWindowExceededError |
|
||||||
| Cohere | 429 |
|
| Cohere | RateLimitError |
|
||||||
| Huggingface | 400 |
|
| Huggingface | ContextWindowExceededError |
|
||||||
| Huggingface | 400 |
|
| Huggingface | InvalidRequestError |
|
||||||
| Huggingface | 401 |
|
| Huggingface | AuthenticationError |
|
||||||
| Huggingface | 429 |
|
| Huggingface | RateLimitError |
|
||||||
| Openrouter | 400 |
|
| Openrouter | ContextWindowExceededError |
|
||||||
| Openrouter | 401 |
|
| Openrouter | AuthenticationError |
|
||||||
| Openrouter | 429 |
|
| Openrouter | RateLimitError |
|
||||||
| AI21 | 400 |
|
| AI21 | ContextWindowExceededError |
|
||||||
| AI21 | 400 |
|
| AI21 | InvalidRequestError |
|
||||||
| AI21 | 401 |
|
| AI21 | AuthenticationError |
|
||||||
| AI21 | 429 |
|
| AI21 | RateLimitError |
|
||||||
| TogetherAI | 400 |
|
| TogetherAI | ContextWindowExceededError |
|
||||||
| TogetherAI | 400 |
|
| TogetherAI | InvalidRequestError |
|
||||||
| TogetherAI | 400 |
|
| TogetherAI | InvalidRequestError |
|
||||||
| TogetherAI | 401 |
|
| TogetherAI | AuthenticationError |
|
||||||
| TogetherAI | 429 |
|
| TogetherAI | RateLimitError |
|
||||||
|
|
||||||
> For a deeper understanding of these exceptions, you can check out [this](https://github.com/BerriAI/litellm/blob/d7e58d13bf9ba9edbab2ab2f096f3de7547f35fa/litellm/utils.py#L1544) implementation for additional insights.
|
> For a deeper understanding of these exceptions, you can check out [this](https://github.com/BerriAI/litellm/blob/d7e58d13bf9ba9edbab2ab2f096f3de7547f35fa/litellm/utils.py#L1544) implementation for additional insights.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue