Llama 4 Scout 17B (16E) Instruct
meta-llama/Llama-4-Scout-17B-16E-Instruct
Overview
Part of the Llama 4 series released in April 2025, Llama 4 Scout is a 17 billion parameter multimodal model utilizing a mixture-of-experts architecture with 16 experts. It is designed for text and image understanding and supports multiple languages. Llama 4 Scout offers a balance of performance and efficiency within the Llama 4 family, making it suitable for various applications requiring multimodal processing.
Tags
CentML Optimized
Chat
Dedicated
LLM
Serverless
VLM
API
curl -X POST "https://api.centml.com/openai/v1/chat/completions" \
-H "Authorization: Bearer *******************************************" \
-H "Content-Type: application/json" \
-d '{
"model": "meta-llama/Llama-4-Scout-17B-16E-Instruct",
"messages": [{ "role": "system", "content": "You are a helpful assistant." }],
"stream": false
}'
from openai import OpenAI
client = OpenAI(
api_key="*******************************************",
base_url="https://api.centml.com/openai/v1"
)
completion = client.chat.completions.create(
model="meta-llama/Llama-4-Scout-17B-16E-Instruct",
messages=[{ "role": "system", "content": "You are a helpful assistant." }],
stream=False,
)
print(completion.choices[0].message)
import OpenAI from "openai";
const client = new OpenAI(
api_key="*******************************************",
base_url="https://api.centml.com/openai/v1"
)
async function main() {
const completion = await client.chat.completions.create({
model: "meta-llama/Llama-4-Scout-17B-16E-Instruct",
messages: [{ "role": "system", "content": "You are a helpful assistant." }],
stream: false,
});
console.log(completion.choices[0])
}
main()