fix: add required max_tokens argument to Anthropic client#436
Open
DanielRyanSmith wants to merge 1 commit intomainfrom
Open
fix: add required max_tokens argument to Anthropic client#436DanielRyanSmith wants to merge 1 commit intomainfrom
max_tokens argument to Anthropic client#436DanielRyanSmith wants to merge 1 commit intomainfrom
Conversation
The Anthropic SDK requires the `max_tokens` argument when creating messages with Claude models. This commit adds a `DEFAULT_MAX_TOKENS` class constant to `AnthropicClient` and includes it in the kwargs for `generate_content`. Tests have been updated to reflect this change.
max_tokens argument to Anthropic client
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
This PR resolves the missing argument error encountered when generating tests using the Anthropic Claude model.
Root Cause / Motivation
The latest version of the Anthropic SDK strictly requires the
max_tokensargument when using themessages.create()method for Claude models. Previously, this argument was omitted, causing aMissing required argumentsexception during the requirements extraction phase of test generation.Detailed Changelog
wptgen/llm.py: Added aDEFAULT_MAX_TOKENS = 8192class constant toAnthropicClient. Included this constant as themax_tokensvalue in thekwargsdictionary passed tomessages.create().tests/test_anthropic.py: Updated the mock assertion intest_anthropic_generate_contentto expectmax_tokens=AnthropicClient.DEFAULT_MAX_TOKENS.