Qwen3-VL 235B vs Llama 3.3 70B on Groq
Llama 3.3 70B on Groq was retired for self-serve accounts, so the practical question is what replaces it. This page puts Qwen3-VL 235B on this endpoint next to the retired offer: price, limits and what changes in your code.
Groq figures are public list prices and documented limits, checked 2026-09-16 against the provider page. Inference APIs prices are read live from the price list.
- Cost: Groq listed it at a lower price, but it can no longer be called there, so the comparison that matters is between the options that still exist.
- Availability: Retired from Groq free and developer tiers on 2026-08-16; requests return 404 model_not_found. Enterprise contracts only.
- Not tied to this model? DeepSeek V4 Flash costs less here for the same workloads; keep Qwen3-VL 235B only if your prompts and tests depend on it.
Side by side
| Qwen3-VL 235B | Llama 3.3 70B on Groq | |
|---|---|---|
| Served by | Inference APIs | Groq |
| Model author | Alibaba Qwen | Alibaba Qwen |
| Model id | Qwen/Qwen3-VL-235B-A22B-Instruct | llama-3.3-70b-versatile |
| Input price | $0.26 / 1M tokens | $0.59 / 1M tokens |
| Output price | $1.15 / 1M tokens | $0.79 / 1M tokens |
| Context window | 262K tokens | 131K tokens |
| Capabilities | Vision, OCR, Chat, Tool calling, JSON mode | Chat, Tool calling, JSON mode |
| Weights | Open | Open |
| Status | Available | Retired |
| Limits | No per-minute or per-day request or token caps; usage draws on a prepaid balance | Retired from Groq free and developer tiers on 2026-08-16; requests return 404 model_not_found. Enterprise contracts only. |
| Time to first token | 1.28 s | not measured by us |
| Output speed | 10.7 tokens / s | not measured by us |
What three workloads cost
List prices applied to the same work. The cheaper side of each row is in bold.
| Workload | Qwen3-VL 235B | Llama 3.3 70B on Groq | Difference |
|---|---|---|---|
| Chat assistant — 10,000 turns of 800 tokens in, 300 out | $5.53 | $7.09 | 22% |
| Long prompts or RAG — 10,000 requests of 8,000 in, 500 out | $26.55 | $51.15 | 48% |
| Generation-heavy — 10,000 requests of 500 in, 2,000 out | $24.30 | $18.75 | 23% |
Groq listed it at a lower price, but it can no longer be called there, so the comparison that matters is between the options that still exist. The Llama 3.3 70B on Groq column is its last list price, shown for reference only.
When to choose which
- Llama 3.3 70B on Groq is no longer offered to self-serve accounts, so this is the one you can actually call
- You need more than 131K tokens of context (it takes 262K)
- Reading screenshots, invoices, receipts and scanned pages into text or JSON
- Agents that need to look at an image and then call a tool
Retired for self-serve accounts. There is no case for choosing it for new work.
Price, context and speed are measurable; answer quality on your task is not something a table can settle. Both take the same request, so the honest test is to run your own prompts through each.
Measured speed
Medians of three streamed runs on 2026-09-17, public endpoint, a prompt that asks for about 120 words. Time to first token is the first token of any kind, reasoning included; output speed counts every generated token from that point. Reasoning models then think before the visible answer starts: Qwen3-VL 235B began answering after 1.28 s at default settings, which you can shorten with the reasoning controls on each model page. Expect ±30% with time of day. We did not measure Groq and do not quote other people's numbers; read "not measured" as unknown, not slow. Method and raw numbers: speed measurements.
Switching from Groq
Both speak the OpenAI wire format. The edit is the base URL, the key and the model id; then re-run your own prompts, because it is a different model.
import os
from openai import OpenAI
# before: Groq
# client = OpenAI(base_url="https://api.groq.com/openai/v1", api_key=os.environ["GROQ_API_KEY"])
# MODEL = "llama-3.3-70b-versatile"
# after: Inference APIs
client = OpenAI(base_url="https://api.inferenceapis.com/v1", api_key=os.environ["INFERENCE_API_KEY"])
MODEL = "Qwen/Qwen3-VL-235B-A22B-Instruct"
resp = client.chat.completions.create(model=MODEL, messages=[{"role": "user", "content": "Hello"}], max_tokens=500)More detail, including Node, LangChain and LiteLLM: switching OpenAI-compatible providers.
FAQ
Which is cheaper, Qwen3-VL 235B or Llama 3.3 70B on Groq?
Groq listed it at a lower price, but it can no longer be called there, so the comparison that matters is between the options that still exist. The table above uses list prices: Qwen3-VL 235B $0.26 / 1M tokens input, $1.15 / 1M tokens output; Llama 3.3 70B on Groq $0.59 / 1M tokens input, $0.79 / 1M tokens output.
Can I still use Llama 3.3 70B on Groq?
Not on a self-serve account. Retired from Groq free and developer tiers on 2026-08-16; requests return 404 model_not_found. Enterprise contracts only.
Spotted a price or limit that has changed? Tell us and we will re-check the provider page.
