We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3654860 commit 3f866b4Copy full SHA for 3f866b4
openhands/llm/llm.py
@@ -418,6 +418,8 @@ def init_model_info(self):
418
self.model_info['max_tokens'], int
419
):
420
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
423
424
# Initialize function calling capability
425
# Check if model name is in our supported list
0 commit comments