Can I send multiple images in one request?
Yes. Include multiple image_url parts, but keep the count small to avoid high latency.
Reference
Vision-capable LLM APIs accept images and text in the same request.
The OpenAI-compatible content array lets you mix text and image_url parts.
A vision-capable LLM API lets you include images as inputs and receive natural language or structured outputs from the model.
curl https://api.abliteration.ai/v1/chat/completions \
-H "Authorization: Bearer $ABLIT_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "vision-model-id",
"messages": [
{
"role": "user",
"content": [
{ "type": "text", "text": "Describe the image." },
{ "type": "image_url", "image_url": { "url": "https://example.com/cat.jpg" } }
]
}
]
}'FAQ
Yes. Include multiple image_url parts, but keep the count small to avoid high latency.
No. Public HTTPS URLs work, and base64 data URLs are optional if you cannot host the image.
Yes. Use stream: true and handle delta chunks just like text-only responses.