Best Vision LLMs in July 2026
Models that accept image input, ranked by general quality evidence, since no independent vision benchmark suite is ingested yet, and this page says so.
This page lists models that accept image input alongside text, filtered on catalog modality data. One honesty note up front: the ranking within this list follows general intelligence evidence, because no independent vision-specific benchmark suite is currently ingested into the catalog. General quality is a reasonable but imperfect proxy for visual reasoning, and this page will switch to vision-specific evidence when it is available.
Models marked as served accept OpenAI-style image_url content blocks (including base64 data URIs) through the Inferbase endpoint, so multimodal requests work with unmodified OpenAI SDK code.
The top pick
The strongest measured fit for this task right now, taken from the live ranking below.
- Intelligence Index
- 59.9
- Context
- 1M
- $ in / out per 1M
- $10 / $50
The ranking
This list includes models whose catalog specifications declare image input, a published modality claim rather than a verified serving capability. Within that set, ordering follows the general quality index, a 0-100 percentile among the 89 qualifying models with measured benchmark evidence; no vision-specific benchmark suite is ingested yet.
| # | Model | Quality index | Intelligence Index | Context | $ in / out per 1M |
|---|---|---|---|---|---|
| 1 | anthropic | 100 | 59.9 | 1M | $10 / $50 |
| 2 | openai | 99.4 | 58.9 | 1.1M | $5 / $30 |
| 3 | anthropic | 98.8 | 55.7 | 1M | $5 / $25 |
| 4 | openai | 98.2 | 55.0 | 1.1M | $2.5 / $15 |
| 5 | openai | 97.6 | 54.8 | 1.1M | $5 / $30 |
| 6 | anthropic | 97.1 | 53.5 | 1M | $5 / $25 |
| 7 | anthropic | 96.5 | 53.4 | 1M | $2 / $10 |
| 8 | openai | 95.9 | 51.4 | 1.1M | $2.5 / $15 |
| 9 | openai | 95.3 | 51.2 | 1.1M | $1 / $6 |
| 10 | google | 94.1 | 50.2 | 1.0M | $1.5 / $9 |
marks models served through the Inferbase API. Missing values are shown as No data rather than estimated.
Also worth evaluating
The next ranks after the top ten, for teams that want a wider shortlist.
Or stop choosing manually
This page exists because model choice is a per-task decision, and the honest answer changes as benchmarks and prices move. Routing makes that decision per request instead.
Send model="auto" to one OpenAI-compatible endpoint and each request is served by the best fit from the same quality and price data behind this ranking, with the decision disclosed per request.
from openai import OpenAI
client = OpenAI(
base_url="https://api.inferbase.ai/api/v1/inference",
api_key="YOUR_INFERBASE_KEY",
)
# Let routing pick the best model per request,
# or pin any model id from GET /models.
response = client.chat.completions.create(
model="auto",
messages=[{"role": "user", "content": "..."}],
)Frequently asked questions
How this ranking works and how to act on it.
By general intelligence evidence, clearly labeled as a proxy. Visual reasoning quality correlates with general capability, but they are not identical, and this page states the limitation rather than presenting the proxy as a vision score.
Served models accept OpenAI-style image_url content blocks, either a hosted URL or a base64 data URI, with a detail level knob where the model supports one. Requests are byte-compatible with the OpenAI SDK format.
Nearly all, but not all: Inferbase actively probes its served routes with real image requests, and the rare deployment that rejects images despite a vision-capable base model is surfaced by that verification rather than assumed away.
Providers convert images to input tokens using resolution-dependent formulas, so a high-detail image can cost thousands of input tokens. The per-token prices in this table apply to those converted tokens; batching or downscaling images is the main cost lever.
Yes. When a request contains image content, Inferbase routing considers only image-capable candidates, in the full catalog or within your custom pool, and returns an actionable error if the pool has none, rather than silently dropping the images.
Related rankings
The same evidence-first method, applied to other tasks.
Your AI stack shouldn't stand still.
Every month new models become cheaper, faster, and more capable. Inferbase ensures your application automatically benefits without changing a single API call.