Back to ModelsBack to Models
Llama 3.2 11B (Vision)
Meta9/ 57
Intelligence Score
Intelligence
9
#193 of 212 (top 91%)
Speed
52 tok/s
#116 of 141
Price
$0.24
per M tokens
#34 cheapest of 142
Context Window
128K
tokens
Latency: 1ms (#27)
Score Breakdown
Quality Score15%
Speed Score7%
Cost Score98%
Similar Models
Ling-mini-2.0
InclusionAI
9intelligence
Granite 4.1 3B
IBM
9intelligence
LFM2 24B A2B
Liquid AI
10intelligence
Phi-4
Microsoft
10intelligence
Nova Micro
Amazon
10intelligence
Use This Model
Claude Code
claude --model llama-3-2-instruct-11b-visionAPI (cURL)
curl https://openrouter.ai/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENROUTER_API_KEY" \
-d '{
"model": "llama-3-2-instruct-11b-vision",
"messages": [{"role": "user", "content": "Hello"}]
}'Vercel AI SDK
import { generateText } from "ai";
import { openrouter } from "@openrouter/ai-sdk-provider";
const { text } = await generateText({
model: openrouter("llama-3-2-instruct-11b-vision"),
prompt: "Hello",
});