LLM Reference
Vercel AI Gateway

Using Llama 4 Maverick 17B Instruct FP8 on Vercel AI Gateway

Implementation guide · Llama 4 · AI at Meta

ServerlessOpen Weights

Vercel AI Gateway exposes Llama 4 Maverick 17B Instruct FP8 through model ID meta/llama-4-maverick. Use the setup steps, sourced pricing, capabilities, and official provider links below to validate this route before deployment.

Last refreshed 2026-07-09. Next refresh: weekly.

Quick Start

  1. 1
    Create an account at Vercel AI Gateway and generate an API key.
  2. 2
    Use the Vercel AI Gateway SDK or REST API to call meta/llama-4-maverick — see the documentation for request format.
  3. 3
    You'll be billed $0.24/1M input, $0.97/1M output tokens. See full pricing.

Code Examples

Install
pip install openai
API key
AI_GATEWAY_API_KEY
Model ID
meta/llama-4-maverick

creator/model-name e.g. kwaipilot/kat-coder-pro-v2

import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["AI_GATEWAY_API_KEY"],
    base_url="https://ai-gateway.vercel.sh/v1"
)
response = client.chat.completions.create(
    model="meta/llama-4-maverick",
    messages=[{"role": "user", "content": "Hello"}]
)
print(response.choices[0].message.content)

Pricing on Vercel AI Gateway

TypePrice (per 1M)
Input tokens$0.24
Output tokens$0.97

Capabilities

VisionMultimodalStructured Outputs

About Llama 4 Maverick 17B Instruct FP8

Meta's Llama 4 Maverick 17B with 128 experts, FP8-optimized for cost-efficient inference. Supports native Model Router integration on Microsoft Foundry.

Model Specs

Released2025-04-05
Parameters400B (17B active)
Context1m
ArchitectureMixture of Experts
Knowledge cutoff2024-08

Provider

Vercel AI Gateway
Vercel AI Gateway

Vercel