Baidu ERNIE

Ernie 4.5 Turbo Preview API

CN Baidu ERNIE
プレイグラウンドで試す → APIキーを取得

Ernie 4.5 Turbo Previewは、百度ERNIEによる高速かつコスト効率の高いモデルです。MeshTok統合APIを通じて利用可能です。

ツールJSON

料金 (公式、1Mトークンあたり)

入力
$0.11/M
出力
$0.46/M

仕様

コンテキストウィンドウ128K トークン 入力モダリティテキスト ストリーミングはい APIOpenAI互換

Ernie 4.5 Turbo Previewの使い方

OpenAIの直接代替。base_urlとモデルのみ変更。

# Python - pip install openai
from openai import OpenAI

client = OpenAI(
    base_url="https://meshtok.com/v1",
    api_key="sk-your-MeshTok-key",
)

resp = client.chat.completions.create(
    model="baidu/ernie-4.5-turbo-preview",
    messages=[{"role":"user","content":"Hello!"}],
)
print(resp.choices[0].message.content)
# cURL
curl https://meshtok.com/v1/chat/completions \
  -H "Authorization: Bearer sk-your-MeshTok-key" \
  -H "Content-Type: application/json" \
  -d '{"model":"baidu/ernie-4.5-turbo-preview","messages":[{"role":"user","content":"Hello!"}]}'

関連モデル

検討できる他のモデル。