1RPC.AI logo
28+ Models
Results for: “Llama 4 Maverick
Llama 4 Maverick logo
Llama 4 Maverick
Llama 4 Maverick is Meta's powerful open-weight multimodal model, blending high-quality language, vision, reasoning, and coding capabilities in a single 17B active parameter MoE architecture with 128 experts. Distilled from the 2T-parameter Llama 4 Behemoth, Maverick delivers top-tier performance at a fraction of the cost and size. Moreover, it offers native multimodality, state-of-the-art vision understanding, and a 1 x H100 deployment footprint.
1.05M 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-maverick",
        "messages": [
            {
                "role": "user",
                "content": "What is the meaning of life?"
            }
        ]
    })
)