inference-providers

ERNIE 4.5 VL 424B A47B

by baidu · family ernie

Facts

Release date2025-06-30
Retired date
Knowledge cutoff
Context (max)123,000
Max output
Modalitiestext, image → text
Aliasesernie-4.5-vl-424b-a47b
Open weightsyes (baidu/ERNIE-4.5-VL-424B-A47B-PT)
DescriptionBaidu's largest open-weights ERNIE: heterogeneous 424B/47B-active MoE with modality-isolated routing, text+image input, 131K context. Chat-template enable_thinking (default on). Still the current open ERNIE flagship.

Unknown values are shown as —.

Offerings

ProviderWire IDVariantEndpointProtocolStatusPrice (USD / Mtok)Reasoning
OpenRouterbaidu/ernie-4.5-vl-424b-a47bchat-completionsopenai-chatga0.42 / 1.25effort · default on · returns reasoning_content · round-trips reasoning_content

Reasoning controls

OpenRouter· baidu/ernie-4.5-vl-424b-a47b· chat-completions effort

reasoning.effort nonelowmedium●highxhighmax

effort · default on · returns reasoning_content · round-trips reasoning_content

Example requests

OpenRouter · openai-chat · baidu/ernie-4.5-vl-424b-a47b

curl 'https://openrouter.ai/api/v1/chat/completions' \
  -H 'Authorization: Bearer <YOUR_API_KEY>' \
  -H 'Content-Type: application/json' \
  -d '{
  "model": "baidu/ernie-4.5-vl-424b-a47b",
  "messages": [
    {
      "role": "user",
      "content": "Tell me about the weather."
    }
  ],
  "reasoning": {
    "effort": "medium"
  }
}'
Python (requests)
import requests

resp = requests.post(
    "https://openrouter.ai/api/v1/chat/completions",
    headers={
      "Authorization": "Bearer <YOUR_API_KEY>",
      "Content-Type": "application/json"
    },
    json={
      "model": "baidu/ernie-4.5-vl-424b-a47b",
      "messages": [
        {
          "role": "user",
          "content": "Tell me about the weather."
        }
      ],
      "reasoning": {
        "effort": "medium"
      }
    },
)
print(resp.json())
TypeScript (fetch)
const resp = await fetch("https://openrouter.ai/api/v1/chat/completions", {
  method: "POST",
  headers: {
    "Authorization": "Bearer <YOUR_API_KEY>",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    "model": "baidu/ernie-4.5-vl-424b-a47b",
    "messages": [
      {
        "role": "user",
        "content": "Tell me about the weather."
      }
    ],
    "reasoning": {
      "effort": "medium"
    }
  }),
})
console.log(await resp.json())
  • ⚠ Responses include reasoning_content artifacts — pass them back unmodified on subsequent turns (dropping them triggers 400s or quality loss).