Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

料金と経路

Lazu は各モデルに 3 つの価格を表示します。

  1. Official reference price:upstream provider の公開価格。比較用であり、この価格で請求しません。
  2. Direct lane price:first-party または主要 cloud 経路で routing する価格。
  3. Cheap lane price:低コスト経路で routing する価格。実験、batch、cost-sensitive な用途向けです。

direct と cheap

Lanerouting 先使う場面
direct公式 endpoint や Azure / AWS / GCP本番、規制対象、低遅延
cheap低コスト third-party 経路batch、実験、prototype

すべてのモデルには direct lane があります。cheap は model/vendor ごとに有効化されます。

vendor ごとの lane 設定

コンソール -> API Keys で key を開き、Advanced から vendor ごとの lane preference を設定できます。未設定なら既定は cheap です。

API から有効価格を読む

agent や script は起動時に /api/models/catalog を読み、現在の API Key が実際に使える モデルと価格を使ってください。

curl https://api.lazu.ai/api/models/catalog \
  -H "Authorization: Bearer $LAZU_API_KEY" \
  | jq '.data[] | select(.id=="gpt-4o-mini") | .pricing'

関連ページ