mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
fix(utils.py): add new error string to context window exception mapping
This commit is contained in:
parent
d6eb986b8e
commit
5cb0c1ad70
1 changed files with 5 additions and 1 deletions
|
@ -5688,7 +5688,11 @@ def exception_type(
|
|||
+ "Exception"
|
||||
)
|
||||
|
||||
if "This model's maximum context length is" in error_str:
|
||||
if (
|
||||
"This model's maximum context length is" in error_str
|
||||
or "string too long. Expected a string with maximum length"
|
||||
in error_str
|
||||
):
|
||||
exception_mapping_worked = True
|
||||
raise ContextWindowExceededError(
|
||||
message=f"ContextWindowExceededError: {exception_provider} - {message}",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue