Groq
Inference API running open-weights models on custom LPU silicon. Sub-second responses and $0.05 per million input tokens, for latency-bound voice and agent workloads.
Overview
Groq designed its own inference chip instead of renting someone else's. The LPU keeps model weights in on-die SRAM, roughly 500MB per chip with no HBM at all, which removes the memory bandwidth wall that caps how fast a GPU can decode tokens one at a time. The practical effect is generation speeds several times a GPU serving identical weights, and the advantage is largest on smaller models where the whole thing fits across a rack's SRAM.
The use case is anything with something waiting on the other end. Voice pipelines, where the whole round trip has a few hundred milliseconds before it feels broken. Agent loops that fire eight or ten model calls before a user sees a single word. High-volume classification and routing, where $0.05 per million input tokens makes per-request cost round to nothing. Teams running these workloads on GPU-backed APIs usually discover that latency, not model quality, is what is killing the product.
Two things should keep it out of a critical path. The catalogue is open weights only, so anything needing frontier reasoning has to route somewhere else anyway. And the corporate picture is genuinely unsettled: the Nvidia deal removed the founder, the president and any architectural exclusivity, and the FTC signalled in January 2026 that it would look at this class of licence-plus-hire arrangement as a merger in disguise. The API is live, performance is unchanged and no end-of-service date exists, but that is a description of today rather than a guarantee about next year.
Key Features
- ✓ LPU silicon that holds weights in roughly 500MB of on-die SRAM per chip rather than HBM, which is where the decode speed comes from
- ✓ Measured output around 840 tokens per second on Llama 3.1 8B and near 1,000 on gpt-oss-20b, several times what a GPU serving the same weights returns
- ✓ OpenAI-compatible API, so moving a client over is a base URL and key swap
- ✓ Batch API accepting JSONL up to 50,000 lines and 200MB at half the standard rate, with 24 hour to 7 day turnaround
- ✓ Prompt caching at 50% of input price on supported models, though it does not stack with the batch discount
Where it holds
- • Latency is the actual product and it delivers. Full responses under a second on 8B-class models changes what you can build in a voice loop or a multi-step agent
- • Cheap where volume lives. $0.05 per million input tokens on Llama 3.1 8B makes classification, routing and extraction work effectively free at the margin
- • The free tier is usable rather than a trial. No card, no expiry clock, every model available, just rate-limited
Where it breaks
- • Open weights only. Llama 3.x and 4, gpt-oss, DeepSeek distills and Kimi K2 are good models, none of them at Claude or GPT-5 level on hard reasoning, so quality-critical work routes elsewhere
- • The December 2025 Nvidia arrangement is a strategic overhang. Nvidia paid about $20 billion for a non-exclusive licence to the LPU architecture and took founder Jonathan Ross and president Sunny Madra with it, and now ships Groq 3 LPX racks built on that design
- • Free tier ceilings of 30 requests per minute and 6,000 tokens per minute will not carry a demo past a handful of concurrent users, and batch and Flex processing are locked behind the Developer tier
- • The model catalogue rotates and deprecations arrive on short notice. Pin model versions and watch the changelog
My Take
December 2025 changed the story here. Nvidia paid roughly $20 billion for a non-exclusive licence to the LPU architecture and hired away founder Jonathan Ross, and by August 2026 it is shipping Groq 3 LPX racks built on that design. Groq stayed independent under CEO Simon Edwards, raised $650 million in June 2026 and the API has not slowed a step: Llama 3.1 8B still returns around 840 tokens per second at $0.05 per million input tokens, the cheapest fast inference available without buying hardware. Use it, and put it behind a routing layer rather than making it the only path you have.
Quick Info
- Pricing:
- freemium
- Openness:
- Proprietary
- Starting at:
- Free tier needs no card, capped around 30 requests per minute, 6,000 tokens per minute and 14,400 requests per day. The Developer tier is pay as you go with roughly 10x those limits and no minimum spend. Per million tokens as of August 2026: Llama 3.1 8B Instant $0.05 in and $0.08 out, gpt-oss-20b $0.075 / $0.30, gpt-oss-120b $0.15 / $0.60, Llama 4 Scout $0.11 / $0.34, Llama 3.3 70B $0.59 / $0.79, Kimi K2 $1.00 / $3.00 with cached input at $0.50. Batch jobs bill at 50% of standard rates. Enterprise capacity is quoted directly.
- Added:
- Aug 2026
- Updated:
- Aug 2026
Use Cases
Judge it on your own work
The notes above say where Groq holds and where it breaks. The fastest check is your own workload.
Visit website ↗Groq compared head to head
Alternatives to Groq
vLLM
open-sourceOpen-source inference server for self-hosted LLMs. PagedAttention and continuous batching for high-concurrency serving across Nvidia, AMD, Intel and CPU backends.
Modal
freemiumServerless Python compute with per-second GPU billing, sub-second cold starts and gVisor Sandboxes for agent code. H100 at $0.001097/s, scale to zero when idle.
LMDeploy
open-sourceApache 2.0 LLM serving and quantization toolkit from Shanghai AI Laboratory's InternLM group. Builds for NVIDIA, Huawei Ascend, Cambricon and AMD ROCm from a single codebase.