2024-07-17 18:54:46 +00:00
|
|
|
// see https://docs.anthropic.com/en/docs/about-claude/models
|
|
|
|
export const MAX_TOKENS = 8192;
|
2024-07-19 09:12:55 +00:00
|
|
|
|
|
|
|
// limits the number of model responses that can be returned in a single request
|
|
|
|
export const MAX_RESPONSE_SEGMENTS = 2;
|