generation.ts 277 B

12345678910
  1. /**
  2. * Constants for PDF content generation
  3. * Shared between client and server code
  4. */
  5. // PDF content truncation limit (characters)
  6. export const MAX_PDF_CONTENT_CHARS = 50000;
  7. // Maximum number of images to send as vision content parts
  8. export const MAX_VISION_IMAGES = 20;