Bytedance有料稼働中
Doubao Seed 1 6 Thinking 250715
APIモデル名: doubao-seed-1-6-thinking-250715
Doubao Seed 1 6 Thinking 250715はBytedanceのチャットモデルで、Api.Airforceの統合APIで提供されています。 1つのキーでOpenAI互換APIを通じてアクセスでき、Api.Airforce上の他の65以上のモデルと併せて利用できます。
料金
仕様
- プロバイダー
- Bytedance
- タイプ
- チャットモデル
Doubao Seed 1 6 Thinking 250715 の活用シーン
- チャットボット・アシスタント — 会話AI、文章作成、要約、Q&A。
Doubao Seed 1 6 Thinking 250715 と類似モデルの比較
| モデル | 知能 | コンテキスト | 入力 / 1M | 出力 / 1M |
|---|---|---|---|---|
| Doubao Seed 1 6 Thinking 250715 | — | — | — | — |
| Doubao Seed 1 6 250615 | — | — | — | — |
| Doubao Seed 1 6 Thinking 250615 | — | — | — | — |
| Doubao Seed 1 8 251228 | — | — | — | — |
料金はApi.Airforceの従量課金レート(1Mトークンあたり)。コンテキストは最大入力長を示します。
関連モデル
Doubao Seed 1 6 250615BytedanceDoubao Seed 1 6 Thinking 250615BytedanceDoubao Seed 1 8 251228BytedanceDoubao Seed 2 0 Code Preview 260215BytedanceDoubao Seed 2 0 Lite 260215BytedanceDoubao Seed 2 0 Mini 260215BytedanceDoubao Seed 2 0 Pro 260215BytedanceSeed RpBytedance · 無料Qwen3.5Alibaba · ¥19 / 1MQwen3.5 397b A17bAlibaba · ¥43 / 1MQwen3.6 35b A3bAlibaba · ¥62 / 1MQwen3.6 PlusQwen · 無料
Doubao Seed 1 6 Thinking 250715 — よくある質問
- Doubao Seed 1 6 Thinking 250715 の料金はいくらですか?
- Doubao Seed 1 6 Thinking 250715 はトークン単位ではなく生成単位で課金されます。現在の料金はpricing pageをご確認ください。
- Doubao Seed 1 6 Thinking 250715 には何ができますか?
- Doubao Seed 1 6 Thinking 250715はBytedanceのチャットモデルで、Api.Airforce APIからアクセスできます。
- Doubao Seed 1 6 Thinking 250715 は無料で使えますか?
- Doubao Seed 1 6 Thinking 250715 は従量課金制の有料モデルです — サブスクリプション不要、使用量分のみ課金されます。
- APIで Doubao Seed 1 6 Thinking 250715 を使うにはどうすればよいですか?
- Doubao Seed 1 6 Thinking 250715 はOpenAI互換です。任意のOpenAI SDKの向き先を https://api.airforce/v1 に変更し、モデルID doubao-seed-1-6-thinking-250715 とApi.AirforceのAPIキーを渡してください。
- Doubao Seed 1 6 Thinking 250715 はどこが開発しましたか?
- Doubao Seed 1 6 Thinking 250715はBytedanceのチャットモデルで、Api.Airforceの統合ゲートウェイを通じて100+の他のモデルとともに提供されています。
リアルタイムメトリクスを読み込み中…
リアルタイムメトリクスを読み込み中…
リアルタイムメトリクスを読み込み中…
APIでDoubao Seed 1 6 Thinking 250715を利用する
OpenAI互換 — 任意のOpenAI SDKをhttps://api.airforce/v1に向け、doubao-seed-1-6-thinking-250715をモデルとして渡してください。
cURL
curl https://api.airforce/v1/chat/completions \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "doubao-seed-1-6-thinking-250715",
"messages": [{ "role": "user", "content": "Hello!" }]
}'Python
from openai import OpenAI
client = OpenAI(base_url="https://api.airforce/v1", api_key="$AIRFORCE_API_KEY")
r = client.chat.completions.create(
model="doubao-seed-1-6-thinking-250715",
messages=[{"role": "user", "content": "Hello!"}],
)
print(r.choices[0].message.content)JavaScript
import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://api.airforce/v1", apiKey: process.env.AIRFORCE_API_KEY });
const r = await client.chat.completions.create({
model: "doubao-seed-1-6-thinking-250715",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(r.choices[0].message.content);