mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
fix: Extend cases where truncation triggers (#10607)
Co-authored-by: Calvin Smith <calvin@all-hands.dev>
This commit is contained in:
parent
d9ac2faff6
commit
408af4e012
@ -895,8 +895,10 @@ class AgentController:
|
||||
'contextwindowexceedederror' in error_str
|
||||
or 'prompt is too long' in error_str
|
||||
or 'input length and `max_tokens` exceed context limit' in error_str
|
||||
or 'please reduce the length of either one'
|
||||
in error_str # For OpenRouter context window errors
|
||||
or 'please reduce the length of either one' in error_str
|
||||
or 'the request exceeds the available context size' in error_str
|
||||
or 'context length exceeded' in error_str
|
||||
# For OpenRouter context window errors
|
||||
or (
|
||||
'sambanovaexception' in error_str
|
||||
and 'maximum context length' in error_str
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user