11 lines
277 B
TypeScript
11 lines
277 B
TypeScript
/**
|
|
* Constants for PDF content generation
|
|
* Shared between client and server code
|
|
*/
|
|
|
|
// PDF content truncation limit (characters)
|
|
export const MAX_PDF_CONTENT_CHARS = 50000;
|
|
|
|
// Maximum number of images to send as vision content parts
|
|
export const MAX_VISION_IMAGES = 20;
|