Results for: “Llama 4 Scout”
Llama 4 Scout
Llama 4 Scout is a nimble and highly efficient multimodal MoE model with 17B active parameters and 16 experts, designed to run on a single NVIDIA H100 GPU. With an industry-leading 10M token context window and impressive performance across reasoning, image understanding, and code tasks, Scout is ideal for tasks like multi-document summarization, long-context retrieval, and visual grounding.
10M Tokens
Python
Typescript
Shell
Loading...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import requests
import json
response = requests.post(
url="https://1rpc.ai/v1/chat/completions",
headers={
"Authorization": "Bearer <1RPC_AI_API_KEY>",
"Content-type": "application/json",
},
data=json.dumps ({
"model": "meta-llama/llama-4-scout",
"messages": [
{
"role": "user",
"content": "What is the meaning of life?"
}
]
})
)