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.
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 |
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)
Rent your own physically dedicated instance with hourly or long-term monthly billing.
We recommend deploying private instances in the following scenarios:
Name | vCPU | RAM, MB | Disk, GB | GPU | |||
---|---|---|---|---|---|---|---|
16 | 98304 | 160 | 3 | $1.34 | Launch | ||
16 | 98304 | 160 | 3 | $2.45 | Launch | ||
16 | 131072 | 160 | 1 | $2.71 | Launch | ||
16 | 98304 | 160 | 3 | $3.23 | Launch | ||
16 | 98304 | 160 | 3 | $4.34 | Launch | ||
16 | 131072 | 160 | 1 | $5.23 | Launch |
Contact our dedicated neural networks support team at nn@immers.cloud or send your request to the sales department at sale@immers.cloud.