🔢 [feat] Add token limit constant for Bedrock

- Define MAX_TOKENS_BEDROCK constant with value 4096
This commit is contained in:
Maki 2024-10-17 00:20:56 +09:00
parent 4becd8f60a
commit aa4c5dc676

View File

@ -1,5 +1,6 @@
// see https://docs.anthropic.com/en/docs/about-claude/models
export const MAX_TOKENS = 8192;
export const MAX_TOKENS_BEDROCK = 4096;
// limits the number of model responses that can be returned in a single request
export const MAX_RESPONSE_SEGMENTS = 2;