Skip to content

Commit 3f866b4

Browse files
xingyaowwmamoodi
authored andcommitted
chore: temporary fix to get sonnet 3.7 working again (#7140)
1 parent 3654860 commit 3f866b4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

openhands/llm/llm.py

+2
Original file line numberDiff line numberDiff line change
@@ -418,6 +418,8 @@ def init_model_info(self):
418418
self.model_info['max_tokens'], int
419419
):
420420
self.config.max_output_tokens = self.model_info['max_tokens']
421+
if 'claude-3-7-sonnet' in self.config.model:
422+
self.config.max_output_tokens = 64000 # litellm set max to 128k, but that requires a header to be set
421423

422424
# Initialize function calling capability
423425
# Check if model name is in our supported list

0 commit comments

Comments
 (0)