OneAPIKey
← All models
Groq

Llama 3.3 70B (Groq)

Llama at Groq speed.

chatfastopen-weights
Input price
$0.71
per 1M tokens (with markup)
Output price
$0.95
per 1M tokens (with markup)
Context window
128,000
tokens max input
About Llama 3.3 70B (Groq)

Meta's Llama 3.3 70B served on Groq's LPUs — hundreds of tokens/sec.

Capabilities
Streaming
Tool calling / function calls
Vision input
JSON mode
Use it through OneAPIKey
import OpenAI from "openai";

const client = new OpenAI({
  apiKey: process.env.ONEAPIKEY_API_KEY,
  baseURL: "https://oneapikey.app/v1",
});

const res = await client.chat.completions.create({
  model: "llama-3-3-70b",
  messages: [{ role: "user", content: "Hello!" }],
});