Llama 4 Scout

multimodal

Llama 4 Scout is the lightest model in the next generation of the Llama 4 family, released on April 5, 2025. Llama 4 scout has a MoE architecture of 16 experts, 109 billion of which only 17 billion are permanently active. The model supports native multimodality. It is capable of simultaneously processing text and up to 5 images as input, allowing it to be used effectively in computer vision tasks such as object recognition, image description, and image-based question answering. Creative text generation, step-by-step reasoning, and programming are also among the model's strengths

That said, Llama scout can run efficiently on just a single H100 GPU, making it attractive for local deployment, and with more parameters, Llama scout outperforms lighter weight models in the segment on benchmarks.

But perhaps the most important feature of the model is its record-breaking context window support of up to 10 million tokens! which makes it ideal for working with large documents, code, multi-page queries and lengthy dialog sessions.


Announce Date: 05.04.2025
Parameters: 109B
Experts: 16
Activated: 17B
Context: 10486K
Attention Type: Chunked Attention
VRAM requirements: 65.2 GB using 4 bits quantization
Developer: Meta AI
Transformers Version: 4.51.0
License: LLAMA 4

Public endpoint

Use our pre-built public endpoints to test inference and explore Llama 4 Scout capabilities.
Model Name Context Type GPU TPS Status Link
RedHatAI/Llama-4-Scout-17B-16E-Instruct-quantized.w4a16 250,000.0 Public 32.12 AVAILABLE try

API access to Llama 4 Scout endpoints

curl https://chat.immers.cloud/v1/endpoints/Llama-4-Scout-17B-16E-Instruct/generate/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer USER_API_KEY" \
-d '{"model": "Llama-4-Scout-17B-16E-Instruct", "messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Say this is a test"}
], "temperature": 0, "max_tokens": 150}'
$response = Invoke-WebRequest https://chat.immers.cloud/v1/endpoints/Llama-4-Scout-17B-16E-Instruct/generate/chat/completions `
-Method POST `
-Headers @{
"Authorization" = "Bearer USER_API_KEY"
"Content-Type" = "application/json"
} `
-Body (@{
model = "Llama-4-Scout-17B-16E-Instruct"
messages = @(
@{ role = "system"; content = "You are a helpful assistant." },
@{ role = "user"; content = "Say this is a test" }
)
} | ConvertTo-Json)
($response.Content | ConvertFrom-Json).choices[0].message.content
#!pip install OpenAI --upgrade

from openai import OpenAI

client = OpenAI(
api_key="USER_API_KEY",
base_url="https://chat.immers.cloud/v1/endpoints/Llama-4-Scout-17B-16E-Instruct/generate/",
)

chat_response = client.chat.completions.create(
model="Llama-4-Scout-17B-16E-Instruct",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Say this is a test"},
]
)
print(chat_response.choices[0].message.content)

Private server

Rent your own physically dedicated instance with hourly or long-term monthly billing.

We recommend deploying private instances in the following scenarios:

  • maximize endpoint performance,
  • enable full context for long sequences,
  • ensure top-tier security for data processing in an isolated, dedicated environment,
  • use custom weights, such as fine-tuned models or LoRA adapters.

Recommended configurations for hosting Llama 4 Scout

Prices:
Name vCPU RAM, MB Disk, GB GPU Price, hour
teslaa10-3.16.96.160 16 98304 160 3 $1.34 Launch
rtx3090-3.16.96.160 16 98304 160 3 $2.45 Launch
teslaa100-1.16.128.160 16 131072 160 1 $2.71 Launch
rtx4090-3.16.96.160 16 98304 160 3 $3.23 Launch
rtx5090-3.16.96.160 16 98304 160 3 $4.34 Launch
teslah100-1.16.128.160 16 131072 160 1 $5.23 Launch
Prices:
Name vCPU RAM, MB Disk, GB GPU Price, hour
teslaa100-2.24.256.240 24 262144 240 2 $5.36 Launch
rtx5090-4.16.128.320 16 131072 320 4 $5.76 Launch
teslah100-2.24.256.240 24 262144 240 2 $10.41 Launch
Prices:
Name vCPU RAM, MB Disk, GB GPU Price, hour
teslaa100-3.32.384.320 32 393216 320 3 $8.01 Launch
teslah100-3.32.384.320 32 393216 320 3 $15.58 Launch

Related models

Need help?

Contact our dedicated neural networks support team at nn@immers.cloud or send your request to the sales department at sale@immers.cloud.