bolt.diy/app/lib/.server/llm/constants.ts

6 lines
216 B
TypeScript
Raw Normal View History

// see https://docs.anthropic.com/en/docs/about-claude/models
2024-11-20 15:08:42 +00:00
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;