Skip to content

Commit 26effea

Browse files
jzhuclaude
andcommitted
fix(droid): update token limit to 128000
Adjusted the token limit from 1000000 to 128000 in the droid tool endpoint configuration. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 5914a42 commit 26effea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

code_assistant_manager/tools/droid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def _process_endpoint(self, endpoint_name: str) -> Optional[str]:
6363
)
6464
if success and model:
6565
display_name = f"{model} [{endpoint_name}]"
66-
return f"{display_name}|{endpoint_config['endpoint']}|{endpoint_config['actual_api_key']}|generic-chat-completion-api|1000000"
66+
return f"{display_name}|{endpoint_config['endpoint']}|{endpoint_config['actual_api_key']}|generic-chat-completion-api|128000"
6767
else:
6868
print(f"Skipped {endpoint_name}\n")
6969
return None

0 commit comments

Comments
 (0)