Phi 4 Reasoning Plus

Microsoft chatreasoning

API ID: microsoft/phi-4-reasoning-plus-04-30

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

About Phi 4 Reasoning Plus

Phi-4 is Microsoft's latest small language model, pushing the boundaries of what's achievable with efficient architectures. Building on the Phi series' success, Phi-4 introduces significant improvements in reasoning, coding, and general capability while maintaining a practical parameter count. The model demonstrates state-of-the-art performance for its size class, often matching or exceeding much larger models on key benchmarks. Phi-4 features an extended context window and excels at mathematical reasoning, code generation, and complex analysis. Its efficient design enables deployment on consumer hardware and cost-effective cloud instances. The model represents Microsoft's continued research into efficient AI, showing that careful training can substitute for raw scale. For developers seeking cutting-edge capability with minimal resources, Phi-4 offers the latest advances in efficient model design. It's particularly valuable for local deployment, edge computing, and applications requiring strong capability without massive compute.

๐Ÿ’ฐ
Price Ranking
#667 lowest price among 950 Chat models

Model Specifications

Context Length
33k
Max Output
โ€”
Release Date
2025-05-01
Capabilities
chat reasoning
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.14
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$4.20
/month
1000 tickets/day, ~800 tokens each
Data Analysis Pipeline
$5.77
/month
500 analyses/day, ~2k tokens each

Microsoft Model Lineup

Compare all models from Microsoft to find the best fit

Model Input Output Context Capabilities
Phi 4 Reasoning Plus Current Free Free 33k chat reasoning
Phi-3 Medium 4K Instruct Free Free 4k chat
Phi-3 Medium 4K Instruct Free Free 4k chat
WizardLM-2 7B Free Free 32k chat
WizardLM-2 7B Free Free 32k chat
Phi 4 Multimodal Instruct Free Free 131k chat vision

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Meta Llama 3.3 70B Instruct
Input: $0.10
Output: $0.32
Context: 131k
Alibaba Qwen Qwen3 30B A3B Instruct 2507
Input: $0.08
Output: $0.33
Context: 262k
Alibaba Qwen Qwen2.5 Coder 32B Instruct
Input: $0.20
Output: $0.20
Context: 33k
Alibaba Qwen Qwen2.5-VL 7B Instruct
Input: $0.20
Output: $0.20
Context: 33k

๐Ÿš€ Quick Start

Get started with Phi 4 Reasoning Plus 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="microsoft/phi-4-reasoning-plus-04-30",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)