Novita経由でGLM 5.2が35%オフ
Vercel AI Gateway を介して Novita にルーティングすることで、GLM 5.2 モデルが 7 月 24 日まで 35% オフで利用可能になる特別キャンペーンが発表された。
キーポイント
割引キャンペーンの詳細
Novita を経由して GLM 5.2 モデルを利用する場合、7 月 24 日まで料金が 35% オフになる期間限定プロモーションが実施されている。
実装方法と設定
AI SDK を使用してモデルを'zai/glm-5.2'に指定し、providerOptions で gateway の order に 'novita' を含めることで割引ルートを有効化できる。
継続的な利用可能性
割引期間終了後の 7 月 24 日以降も、GLM 5.2 モデル自体は引き続き AI Gateway で利用可能であることが明記されている。
重要な引用
'GLM 5.2 is 35% off on AI Gateway through July 24 when routed through Novita.'
set the model to 'zai/glm-5.2' in the AI SDK and route requests through Novita
影響分析・編集コメントを表示
影響分析
このニュースは、Vercel の AI Gateway と Novita というインフラプロバイダーの連携強化を示しており、開発者が特定の LLM モデルを低コストで試行錯誤できる環境を提供しています。特に GLM シリーズのような中国発モデルや、特定ベンダーの最新モデルを利用する際の初期投資を抑える効果があり、プロジェクトのスピードアップに寄与します。
編集コメント
Vercel の AI Gateway が提供する柔軟なルーティング機能と、Novita のコスト競争力を組み合わせることで、開発者は GLM 5.2 のような最新モデルを低リスクで検証できます。この期間限定割引は、特に予算制約のあるプロトタイプ開発や、複数モデルのベンチマーク調査において有用な機会です。
AI Gateway を介して Novita 経由で利用する場合、GLM 5.2 は 7 月 24 日まで 35% オフになります。
割引価格を利用するには、AI SDK でモデルを zai/glm-5.2 に設定し、リクエストを Novita 経由でルーティングしてください。
agent.ts
import { streamText } from 'ai';
const result = streamText({
model: 'zai/glm-5.2',
prompt: 'Migrate every API route to the new auth middleware and open a PR.',
providerOptions: {
gateway: {
order: ['novita'],
},
},
});
AI Gateway のプロバイダーオプションを使って、GLM 5.2 のリクエストを Novita にルーティングする例です。
7 月 24 日以降もこのモデルは利用可能ですが、割引は終了し、標準的なプロバイダー料金(マークアップなし)で利用できます。
モデルプレイグラウンド で GLM 5.2 を試すことができます。
原文を表示
GLM 5.2 is 35% off on AI Gateway through July 24 when routed through Novita.
To get the discounted rate, set the model to zai/glm-5.2 in the AI SDK and route requests through Novita:
agent.ts
import { streamText } from 'ai';const result = streamText({ model: 'zai/glm-5.2', prompt: 'Migrate every API route to the new auth middleware and open a PR.', providerOptions: { gateway: { order: ['novita'], }, },});Routing GLM 5.2 requests to Novita with the gateway provider options
After July 24, the model stays available at standard provider rates with no markup.
Try GLM 5.2 in the model playground.
関連記事
今日のまとめ
AI日報で今日の重要ニュースをまとめ読み