Llama 3.2 90B Vision
Meta's first open-weight vision-language model at 90B parameters.
Updated
Quick facts
- Released
- Sep 2024
- Context
- 128K tokens
- Output / 1M
- Pricing not published
- License
- Llama 3 Community License
About Llama 3.2 90B Vision
Llama 3.2 90B Vision was Meta's late-2024 multimodal addition, bringing image understanding to the Llama family for the first time. Apache-2-adjacent community license, widely available on Together, Fireworks, and OpenRouter.
For self-hosted vision workloads in 2025, it was the practical open-weight default. By 2026, Qwen2-VL has largely taken its mindshare for new builds.
Benchmarks
Published scores from Meta's model card or independent leaderboards. We do not publish numbers we cannot source, see methodology.
Capabilities
Strengths
- First Llama with vision
- 90B-class quality
Tracked weaknesses
- Heavy to serve
- Superseded by Llama 4 90B
Pricing
Per-million-token rates as published by Meta.
Call Llama 3.2 90B Vision from your code
Drop-in snippet for the Meta SDK. Set your API key in the environment and run.
import OpenAI from "openai";
const client = new OpenAI({
// Use OPENAI_API_KEY for OpenAI, or your provider's key + baseURL.
apiKey: process.env.OPENAI_API_KEY,
});
const completion = await client.chat.completions.create({
model: "llama-3-2-90b-vision",
messages: [
{ role: "user", content: "What's the time complexity of quicksort?" },
],
});
console.log(completion.choices[0].message.content);Compare Llama 3.2 90B Vision with…
Frequently asked
How much does Llama 3.2 90B Vision cost?
Meta has not published per-token API pricing for Llama 3.2 90B Vision at the time of writing. Check the official site for current pricing tiers, or compare against alternative models on LLMDex.What is Llama 3.2 90B Vision's context window?
Llama 3.2 90B Vision supports a context window of 128K tokens.Is Llama 3.2 90B Vision open source?
Llama 3.2 90B Vision ships with open weights under the Llama 3 Community License license. You can self-host it, fine-tune it, and (subject to the license terms) deploy it commercially.When was Llama 3.2 90B Vision released?
Llama 3.2 90B Vision was released on Sep 25, 2024 by Meta.
Intelligence, distilled weekly.
One short email every Friday, new model launches, leaderboard moves, and pricing drops. Curated by hand. Free, no spam.