Routeway Logo
Back to Models
Meta

Llama 4 Scout

Available

Description

Llama 4 Scout 17B Instruct (16E) is a mixture-of-experts (MoE) language model developed by Meta, activating 17 billion parameters out of a total of 109B. It supports native multimodal input (text and image) and multilingual output (text and code) across 12 supported languages. Designed for assistant-style interaction and visual reasoning, Scout uses 16 experts per forward pass and features a context length of 10 million tokens, with a training corpus of ~40 trillion tokens. Built for high efficiency and local or commercial deployment, Llama 4 Scout incorporates early fusion for seamless modality integration. It is instruction-tuned for use in multilingual chat, captioning, and image understanding tasks. Released under the Llama 4 Community License, it was last trained on data up to August 2024 and launched publicly on April 5, 2025.

At a Glance

Key pricing and model details available for this model.

Input price

$0.10

per 1M tokens

Output price

$0.23

per 1M tokens

Context window

1.0M

tokens

Hallucination rate

1.62%

Token Pricing

Token pricing normalized to per-million-token rates.

Input / 1M tokens

$0.10

Output / 1M tokens

$0.23

Cache Read / 1M tokens

Free

Token Pricing Details

Rates are shown per 1M tokens for easier comparison.

Input / 1M tokens$0.10
Input unit1M tokens
Output / 1M tokens$0.23
Output unit1M tokens
Cache Read / 1M tokensFree
Cache Read unit1M tokens

Feature Availability

Capabilities explicitly listed in the current payload.

LLM

Available

Yes

Vision

Available

Yes

Function calling

Available

Yes

Reasoning

Not listed

No

Supported Parameters

frequency_penalty
logit_bias
max_completion_tokens
presence_penalty
reasoning_effort
response_format
stop
temperature
tool_choice
tools
top_p

Artificial Analysis

Index scores currently reported for this model.

Intelligence Index

13.5

Coding Index

6.7

Math Index

14

Category Radar

Aggregated from the benchmark values present for reasoning, code, math, and accuracy.

Benchmark Breakdown

Detailed benchmark results drawn from the current payload.

Intelligence Index

index

Overall 'how smart' score for an AI, combining reasoning, math, coding, and knowledge.

13.5

Reported score

Coding Index

index

How well the model handles real programming tasks.

6.7

Reported score

Math Index

index

Composite score measuring mathematical reasoning and problem-solving.

14

Reported score

MMLU-Pro

reasoning

A broad and difficult knowledge-and-reasoning benchmark across many subjects.

75.2%

Reported score

GPQA

reasoning

Graduate-level science questions designed to be difficult to shortcut.

58.7%

Reported score

HLE

reasoning

A very hard expert-level exam across a wide range of subjects.

4.3%

Reported score

LiveCodeBench

code

Fresh programming tasks meant to test current coding ability.

29.9%

Reported score

SciCode

code

Coding tasks drawn from real scientific workflows.

17%

Reported score

MATH-500

math

A set of difficult competition-style math problems.

84.4%

Reported score

AIME

math

Advanced math competition questions.

28.3%

Reported score

AIME 2025

math

The 2025 AIME benchmark used to reduce data leakage concerns.

14.0%

Reported score

IFBench

accuracy

Measures how precisely the model follows detailed instructions.

39.5%

Reported score

LCR

accuracy

Tests long-context reasoning over large documents and conversations.

25.8%

Reported score

TerminalBench Hard

code

A harder coding-agent benchmark for complex multi-step terminal tasks.

1.5%

Reported score

Tau2

accuracy

Evaluates realistic agent behavior in tool-using support workflows.

15.5%

Reported score

Code Samples

Quick start with the Routeway API

import OpenAI from 'openai';

const openai = new OpenAI({
  baseURL: "https://api.routeway.ai/v1",
  apiKey: "<YOUR_API_KEY>",
});

async function main() {
  const completion = await openai.chat.completions.create({
    model: "llama-4-scout",
    messages: [
      {
        role: "user",
        content: "Explain quantum computing in simple terms"
      }
    ]
  });

  console.log(completion.choices[0].message);
}

main();