From 8d046de8d4520195b77572fa950258f7efff6245 Mon Sep 17 00:00:00 2001 From: Thibault Genaitay Date: Wed, 13 Nov 2024 09:56:06 +0100 Subject: [PATCH 1/2] fix(ai): vision FAQ --- ai-data/generative-apis/how-to/query-vision-models.mdx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ai-data/generative-apis/how-to/query-vision-models.mdx b/ai-data/generative-apis/how-to/query-vision-models.mdx index 93e7782e55..f517abf0e7 100644 --- a/ai-data/generative-apis/how-to/query-vision-models.mdx +++ b/ai-data/generative-apis/how-to/query-vision-models.mdx @@ -236,3 +236,11 @@ async def main(): asyncio.run(main()) ``` + +## Frequently Asked Questions + +#### Is there a limit to the size of each image? +The only limitation is in context window (1 token for each 16x16 pixel). + +#### What is the maximum amount of images per conversation? +One conversation can handle up to 12 images (per request). The 13rd will return a 400 Bad Request error. From 5f6ef35176d608a54d938100c474e2682d50eca7 Mon Sep 17 00:00:00 2001 From: Benedikt Rollik Date: Wed, 13 Nov 2024 10:03:02 +0100 Subject: [PATCH 2/2] Update ai-data/generative-apis/how-to/query-vision-models.mdx --- ai-data/generative-apis/how-to/query-vision-models.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ai-data/generative-apis/how-to/query-vision-models.mdx b/ai-data/generative-apis/how-to/query-vision-models.mdx index f517abf0e7..8b18cad665 100644 --- a/ai-data/generative-apis/how-to/query-vision-models.mdx +++ b/ai-data/generative-apis/how-to/query-vision-models.mdx @@ -243,4 +243,4 @@ asyncio.run(main()) The only limitation is in context window (1 token for each 16x16 pixel). #### What is the maximum amount of images per conversation? -One conversation can handle up to 12 images (per request). The 13rd will return a 400 Bad Request error. +Each conversation can handle up to 12 images (per request). Attempting to add a 13th image will result in a 400 Bad Request error.