Back to all tools
Groq logo

Groq

World's fastest LLM inference — 800 tokens/sec on Llama 3 with LPU chips.

0Free-Limited
LLM Platforms
Share:XLinkedInWhatsApp

Overview

Groq provides ultra-fast LLM inference using custom Language Processing Units (LPUs), delivering Llama 3, Mixtral, and Gemma at 300–800 tokens/second.

Available Models

— may change as new versions release
ModelContextBest ForCost Tier
Llama 3.3 70B128KBest open model for general tasks, fast on GroqFree
Llama 3.1 8B128KUltra-fast, lightweight, high-volume useFree
DeepSeek R1 70B128KReasoning and math at open-source speedsFree
Mixtral 8x7B32KMoE model, instruction followingFree
Gemma 2 9B8KSmall, fast, Google-tuned modelFree
Whisper Large v3Speech-to-text transcriptionFree

Key Features

  • 300–800 tokens/second inference speed
  • OpenAI-compatible API — drop-in replacement
  • Llama 3, Mixtral, Gemma, and Whisper models
  • Generous free tier — 30 requests/minute
  • Streaming responses with minimal latency
  • Tool use and JSON mode support

Real-World Workflows

Low-latency AI for real-time applications

  1. 1Replace your OpenAI client with Groq (base_url change only)
  2. 2Select llama-3.3-70b-versatile as your model
  3. 3Measure response latency — typically under 1 second for medium prompts
  4. 4Use streaming to show tokens as they arrive in your UI

Getting Started

pip install groq

from groq import Groq
client = Groq()  # uses GROQ_API_KEY env var

chat = client.chat.completions.create(
    model='llama-3.3-70b-versatile',
    messages=[{'role': 'user', 'content': 'What is Groq?'}]
)
print(chat.choices[0].message.content)

Compare Alternatives

See how Groq stacks up against similar tools.