Devstral Small 1.1

Mistral chatreasoningtool_use

API ID: mistralai/devstral-small-2507

Input Price
$0.07
/1M tokens
Output Price
$0.28
/1M tokens

About Devstral Small 1.1

Devstral is Mistral AI's specialized model for software development, optimized for coding tasks and developer workflows. The model excels at code generation, completion, explanation, and debugging across multiple programming languages. Devstral features architecture optimized for development tool integration and IDE use. It demonstrates strong performance on coding benchmarks and understands software development context deeply. The model is particularly valuable for AI-powered development tools, code review automation, and programming assistants. For developers seeking specialized coding AI from Mistral, Devstral offers focused capability for software development tasks.

๐Ÿ’ฐ
Price Ranking
#345 lowest price among 599 Chat models

Model Specifications

Context Length
128k
Max Output
โ€”
Release Date
2025-07-10
Capabilities
chat reasoning tool_use
Input Modalities
text
Output Modalities
text

Best For

  • Complex reasoning, math problems, multi-step logic
  • Conversations, content writing, general assistance

Consider Alternatives For

  • Image understanding (needs vision capability)
  • Simple Q&A (cheaper models available)

๐Ÿ’ฐ Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$0.12
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$3.57
/month
1000 tickets/day, ~800 tokens each
Data Analysis Pipeline
$4.94
/month
500 analyses/day, ~2k tokens each

Mistral Model Lineup

Compare all models from Mistral to find the best fit

Model Input Output Context Capabilities
Devstral Small 1.1 Current Free Free 128k chat reasoning tool_use
Mixtral 8x22B (base) Free Free 66k chat
Mistral Medium Free Free 32k chat
Mistral Small Free Free 32k chat
Codestral 2501 Free Free 256k chat code
Codestral Mamba Free Free 256k chat code

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Baidu ERNIE 4.5 21B A3B Thinking
Input: $0.07
Output: $0.28
Context: 131k
Baidu ERNIE 4.5 21B A3B
Input: $0.07
Output: $0.28
Context: 120k
Other Spotlight
Input: $0.18
Output: $0.18
Context: 131k
Meta Llama Guard 4 12B
Input: $0.18
Output: $0.18
Context: 164k

๐Ÿš€ Quick Start

Get started with Devstral Small 1.1 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="mistralai/devstral-small-2507",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)