openai/o4-mini
リリース日: 2025-04-17
200,000 context · $1.10/M input tokens · $4.40/M output tokens
OpenAI o4-mini is a compact reasoning model in the o-series, optimized for fast, cost-efficient performance while retaining strong multimodal and agentic capabilities. It supports tool use and demonstrates competitive reasoning...
従量課金
初期費用なし、使った分だけお支払い
以下のコード例を使用して API と連携してください:
import OpenAI from 'openai';
if (!process.env.WAVESPEED_API_KEY) throw new Error('Set WAVESPEED_API_KEY');
const client = new OpenAI({
apiKey: process.env.WAVESPEED_API_KEY,
baseURL: 'https://llm.wavespeed.ai/v1',
timeout: 120_000,
maxRetries: 2,
});
try {
const response = await client.chat.completions.create({
model: 'openai/o4-mini',
messages: [{ role: 'user', content: 'Hello!' }],
});
console.log(response.choices[0]?.message?.content ?? '');
} catch (error) {
console.error('LLM request failed:', error);
process.exitCode = 1;
}import OpenAI from 'openai';
if (!process.env.WAVESPEED_API_KEY) throw new Error('Set WAVESPEED_API_KEY');
const client = new OpenAI({
apiKey: process.env.WAVESPEED_API_KEY,
baseURL: 'https://llm.wavespeed.ai/v1',
timeout: 120_000,
maxRetries: 2,
});
try {
const response = await client.chat.completions.create({
model: 'openai/o4-mini',
messages: [{ role: 'user', content: 'Hello!' }],
});
console.log(response.choices[0]?.message?.content ?? '');
} catch (error) {
console.error('LLM request failed:', error);
process.exitCode = 1;
}openai o4-mini
| Specification | Value |
|---|---|
| Provider | Openai |
| Model Type | Large Language Model (LLM) |
| Architecture | N/A |
| Context Window | 200000 tokens |
| Max Output | 100000 tokens |
| Input | Text |
| Output | Text |
| Vision | Supported |
| Function Calling | Supported |
| Token Type | Cost per Million Tokens |
|---|---|
| Input | $1.2 |
| Output | $4.8 |
Base URL: https://llm.wavespeed.ai/v1 API Endpoint: chat/completions Model ID: openai/o4-mini
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://llm.wavespeed.ai/v1"
)
response = client.chat.completions.create(
model="openai/o4-mini",
messages=[
{"role": "user", "content": "Hello!"}
]
)
print(response.choices[0].message.content)
curl https://llm.wavespeed.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "openai/o4-mini",
"messages": [{"role": "user", "content": "Hello!"}]
}'
openai/o4-mini
OpenAI o4-mini is a compact reasoning model in the o-series, optimized for fast, cost-efficient performance while retaining strong multimodal and agentic capabilities. It supports tool use and demonstrates competitive reasoning...
入力
$1.1 /M
出力
$4.4 /M
コンテキスト
200K
最大出力
100K
Vision
対応
ツール利用
対応
WaveSpeedAI の料金: 入力 100 万トークンあたり $1.10、出力 100 万トークンあたり $4.40。プロンプトキャッシュとバッチ処理は別途料金で、長く反復的なワークロードでは実効コストを下げられます。
o4 Mini はリクエストあたり最大 200K のコンテキストトークンと最大 100K の出力トークンをサポートします。
WaveSpeedAI は https://llm.wavespeed.ai/v1 の OpenAI 互換 Chat Completions インターフェースで o4 Mini を提供します。多くの OpenAI SDK クライアントはベース URL と API キーの変更で利用できますが、オプション項目はモデルごとに異なります。
WaveSpeedAI にサインインし、Access Keys で API キーを作成して、上に表示されたモデル ID を指定して https://llm.wavespeed.ai/v1/chat/completions にリクエストを送信してください。提供状況、機能、料金は最新のモデルカタログで確認してください。