Back to Models
Meta Llama 3.1 405B Instruct Turbo
meta-llama/meta-llama-3.1-405b-instruct-turbo
Meta
Chat
Description
Meta Llama 3.1 405B Instruct Turbo by Meta. This model supports chat capabilities. Variant: Instruct.
Specifications
- Context Length:
- 10000
- Variant:
- Instruct
- Parameters:
- 405B
Pricing
- Input Cost:
- $0.7000/100K tokens
- Output Cost:
- $0.7000/100K tokens
Usage Example
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.yourproxy.com/v1",
apiKey: process.env.PROXY_KEY,
});
const completion = await client.chat.completions.create({
model: "meta-llama/meta-llama-3.1-405b-instruct-turbo",
messages: [{ role: "user", content: "Hello!" }],
});