Skip to content

Commit c72e623

Browse files
shukladivyanshcopybara-github
authored andcommitted
fix: Increase max output tokens for Claude to 8k
PiperOrigin-RevId: 786499934
1 parent 7d10299 commit c72e623

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/com/google/adk/models/Claude.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
public class Claude extends BaseLlm {
6161

6262
private static final Logger logger = LoggerFactory.getLogger(Claude.class);
63-
private static final int MAX_TOKEN = 1024;
63+
private static final int MAX_TOKEN = 8192;
6464
private final AnthropicClient anthropicClient;
6565

6666
/**

0 commit comments

Comments
 (0)