Back to Models

Llama 4 Scout Instruct (17Bx16E)

meta-llama/llama-4-scout-17b-16e-instruct
Meta Chat

Description

Llama 4 Scout Instruct (17Bx16E) by Meta. This model supports chat capabilities. Variant: Instruct.

Specifications

Context Length:
1048576
Variant:
Instruct
Parameters:
17B

Pricing

Input Cost:
$0.0360/100K tokens
Output Cost:
$0.1180/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/llama-4-scout-17b-16e-instruct",
  messages: [{ role: "user", content: "Hello!" }],
});