Meta's largest open-weight model with state-of-the-art performance across benchmarks. Full open access with no restrictions. Competes with the best proprietary models on reasoning, coding, and general tasks. Available for both commercial and research use.
Meta
128k tokens
4,096 tokens
meta/llama-3.1-405b
Drop-in compatible with any OpenAI client library.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.deployai.dev/v1",
apiKey: process.env.DEPLOYAI_API_KEY,
});
const completion = await client.chat.completions.create({
model: "meta/llama-3.1-405b",
messages: [
{ role: "user", content: "Hello, how are you?" }
],
});
console.log(completion.choices[0].message.content);Strong open-weight model balancing capability and efficiency. Great for production workloads.
Efficient open-weight model for fast inference. Good for focused tasks where speed matters most.
Most capable multimodal model. Excels at complex reasoning, coding, creative writing, and vision tasks.