An efficient ~17B parameter MoE model optimized for lightweight chat and text tasks. Processes text and images with best-in-class performance in its class.
Context Window
128k tokens
Pricing (Input / Output)
$0.29 / $0.39 per 1M
Architecture
Mixture-of-Experts (MoE) with 16 experts
Parameters
17B active / 109B total
Modality
Text, Image, Video (multilingual)
Knowledge Cutoff
August 2024
curl -X POST https://api.neuralhub.xyz/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer NEURALHUB_API_KEY" \
-d '{
"model": "meta/llama4-scout-17b",
"messages": [
{ "role": "system", "content": "You are a helpful assistant." },
{ "role": "user", "content": "" }
],
"temperature": 0.7,
"max_tokens": 500,
"top_p": 0.9
}'The API returns an OpenAI-compatible response. Example:
{
"id": "chatcmpl-<uuid>",
"object": "chat.completion",
"created": 1764849305,
"model": "meta/llama4-scout-17b",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "The answer to life, the universe, and everything is famously 42..."
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 26,
"completion_tokens": 169,
"total_tokens": 195
}
}