mirror of
https://github.com/stackblitz-labs/bolt.diy.git
synced 2025-06-18 01:49:07 +01:00
6 lines
216 B
TypeScript
6 lines
216 B
TypeScript
// see https://docs.anthropic.com/en/docs/about-claude/models
|
|
export const MAX_TOKENS = 4096;
|
|
|
|
// limits the number of model responses that can be returned in a single request
|
|
export const MAX_RESPONSE_SEGMENTS = 2;
|