ERNIE X1.1 Preview
Baidu logo

ERNIE X1.1 Preview

ernie-x1.1-preview
Baidu
The Wenxin large model X1.1 has made significant improvements in question answering, tool invocation, intelligent agents, instruction following, logical reasoning, mathematics, and coding tasks, with notable enhancements in factual accuracy. The context length has been extended to 64K tokens, supporting longer inputs and dialogue history, which improves the coherence of long-chain reasoning while maintaining response speed.

Pricing

  • Input Tokens: $0.136 /M tokens
  • Output Tokens: $0.544 /M tokens

Input Modalities

    Providers

    Baidu ERNIE-X1.1-Preview
    Pricing$0.136$0.544
    Context119K
    Max output64K
    Latency2.4S
    Throughput3.0TPS
    Uptime
    0.00% uptime 2 days ago
    0.00% uptime yesterday
    100.00% uptime today

    Performance for ernie-x1.1-preview

    Uptime is the percentage of requests that succeeded over the past 72 hours. AIHubMix continuously monitors every provider and automatically retries with the next-best provider when one returns an error or responds too slowly; Latency is total round-trip time (lower is better); Throughput is how fast the model writes (tokens per second, higher is better).

    Uptime
    Loading...
    Latency
    Loading...
    Throughput
    Loading...

    Try this model

    Python
    import os
    from openai import OpenAI
    
    client = OpenAI(
        api_key=os.environ["AIHUBMIX_API_KEY"],
        base_url="https://aihubmix.com/v1",
    )
    
    response = client.chat.completions.create(
        model="ernie-x1.1-preview",
        messages=[
          {
            "role": "user",
            "content": "Hello, how are you?"
          }
        ],
        max_tokens=1024,
        stream=False,
    )
    
    print(response.choices[0].message.content)

    Frequently asked questions

    What is ERNIE X1.1 Preview?

    The Wenxin large model X1.1 has made significant improvements in question answering, tool invocation, intelligent agents, instruction following, logical reasoning, mathematics, and coding tasks, with notable enhancements in factual accuracy. The context length has been extended to 64K tokens, supporting longer inputs and dialogue history, which improves the coherence of long-chain reasoning while maintaining response speed.