Llama 4 Scout

Meta chattool_usevision Long

API ID: meta-llama/llama-4-scout-17b-16e-instruct

Input Price
$0.08
/1M tokens
Output Price
$0.30
/1M tokens

About Llama 4 Scout

Llama 4 Scout is Meta's efficient model from the Llama 4 generation, designed for practical deployment while delivering strong capability. The model features improved architecture and training that enables better performance per parameter than previous generations. Llama 4 Scout excels at general reasoning, coding, and multilingual tasks while maintaining efficient inference. It supports an extended context window and function calling for building AI agents. The open weights enable self-hosting, fine-tuning, and customization without API dependencies. For developers seeking capable open-source AI with the latest Meta improvements, Llama 4 Scout offers excellent value. It's particularly valuable for applications requiring strong capability with practical resource requirements.

๐Ÿ’ฐ
Price Ranking
#692 lowest price among 1240 Chat models

Model Specifications

Context Length
1.3M
Max Output
8k
Release Date
2025-04-05
Capabilities
chat tool_use vision
Input Modalities
textimage
Output Modalities
text

Best For

  • Image analysis, document understanding, visual Q&A
  • Conversations, content writing, general assistance

๐Ÿ’ฐ Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$0.13
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$3.90
/month
1000 tickets/day, ~800 tokens each

Meta Model Lineup

Compare all models from Meta to find the best fit

Model Input Output Context Capabilities
Llama 4 Scout Current Free Free 1.3M chat tool_use vision
Llama 3 70B (Base) Free Free 8k chat
Llama 3 70B (Base) Free Free 8k chat
LlamaGuard 2 8B Free Free 8k chat
Llama 3 8B (Base) Free Free 8k chat
Llama 3 8B (Base) Free Free 8k chat

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Other MiMo-V2-Flash (free)
Input: $0.09
Output: $0.29
Context: 262k
Google Gemini 2.0 Flash Lite
Input: $0.07
Output: $0.30
Context: 1.0M
OpenAI GPT-4o-mini (batch)
Input: $0.07
Output: $0.30
Context: 128k
Bytedance Seed Seed 1.6 Flash
Input: $0.07
Output: $0.30
Context: 262k

๐Ÿš€ Quick Start

Get started with Llama 4 Scout API

OpenAI-compatible SDK
from openai import OpenAI

client = OpenAI(
    base_url="https://api.provider.com/v1",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="meta-llama/llama-4-scout-17b-16e-instruct",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)