From bb9d8980d0021833cb7b176311811591ab8c0a27 Mon Sep 17 00:00:00 2001 From: Sam Markowitz Date: Wed, 25 Mar 2026 10:28:39 +0200 Subject: [PATCH] docs: add limitations to GenerateImage JSDoc Co-Authored-By: Claude Sonnet 4.6 --- src/modules/integrations.types.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/modules/integrations.types.ts b/src/modules/integrations.types.ts index 58e493d..2138aea 100644 --- a/src/modules/integrations.types.ts +++ b/src/modules/integrations.types.ts @@ -194,8 +194,13 @@ export interface CoreIntegrations { /** * Create AI-generated images from text prompts. * + * Images are generated as PNG files at approximately 1024px on the shorter side. The + * exact dimensions vary by aspect ratio. + * + * Prompts that violate the AI provider's content policy will be refused. + * * @param params - Parameters for image generation - * @returns Promise resolving to the generated image URL. + * @returns Promise resolving to an object containing the URL of the generated PNG image. * * @example * ```typescript