ERNIE 4.5 300B A47B

Baidu chattool_use

API ID: baidu/ernie-4.5-300b-a47b

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

About ERNIE 4.5 300B A47B

ERNIE 4.5 is Baidu's advanced language model, representing significant improvements in reasoning and capability. Building on the ERNIE architecture, it delivers strong performance on complex tasks with particular strength in Chinese language understanding. ERNIE 4.5 features an extended context window and excels at analysis, content generation, and technical tasks. The model integrates with Baidu's cloud ecosystem for enterprise deployment. It's particularly valuable for applications serving Chinese-speaking markets and scenarios requiring deep Chinese cultural understanding. For organizations seeking capable AI from China's leading search company, ERNIE 4.5 offers specialized capability.

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

Model Specifications

Context Length
123k
Max Output
12k
Release Date
2025-06-30
Capabilities
chat tool_use
Input Modalities
text
Output Modalities
text

Best For

  • Conversations, content writing, general assistance

Consider Alternatives For

  • Image understanding (needs vision capability)

๐Ÿ’ฐ Real-World Cost Examples

Estimated monthly costs for common use cases

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

Baidu Model Lineup

Compare all models from Baidu to find the best fit

Model Input Output Context Capabilities
ERNIE 4.5 300B A47B Current $0.28 $1.10 123k chat tool_use
ERNIE 4.5 21B A3B Thinking $0.07 $0.28 131k chat reasoning tool_use
ERNIE 4.5 21B A3B $0.07 $0.28 120k chat reasoning tool_use
ERNIE 4.5 VL 28B A3B $0.14 $0.56 30k chat vision reasoning
ERNIE 4.5 VL 424B A47B $0.42 $1.25 123k chat vision reasoning

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Other Llama 3.3 Euryale 70B
Input: $0.65
Output: $0.75
Context: 131k
Other Llama 3.1 Euryale 70B v2.2
Input: $0.65
Output: $0.75
Context: 131k
Other Skyfall 36B V2
Input: $0.55
Output: $0.80
Context: 33k
Alibaba Qwen Qwen3 Next 80B A3B Thinking
Input: $0.15
Output: $1.20
Context: 131k

๐Ÿš€ Quick Start

Get started with ERNIE 4.5 300B A47B 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="baidu/ernie-4.5-300b-a47b",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)