Meta有料稼働中
Llama 3.1 405b Instruct
APIモデル名: llama-3.1-405b-instruct
Llama 3.1 405b InstructはMetaのチャットモデルで、Api.Airforceの統合APIで提供されています。 料金は入力100万トークンあたり¥931、出力100万トークンあたり¥1,861です。 1つのキーでOpenAI互換APIを通じてアクセスでき、Api.Airforce上の他の65以上のモデルと併せて利用できます。
料金
仕様
- プロバイダー
- Meta
- タイプ
- チャットモデル
ベンチマーク
Artificial Analysis による独立した評価と実測速度。
知能指数
8.3/100
数学指数
3.0/100
MMLU-Pro73%
GPQA Diamond52%
Humanity's Last Exam4%
LiveCodeBench31%
AIME 20253%
MATH-50070%
Llama 3.1 Instruct 405B
出典: Benchmark data by Artificial Analysis (artificialanalysis.ai)
Llama 3.1 405b Instruct の活用シーン
- チャットボット・アシスタント — 会話AI、文章作成、要約、Q&A。
Llama 3.1 405b Instruct と類似モデルの比較
| モデル | 知能 | コンテキスト | 入力 / 1M | 出力 / 1M |
|---|---|---|---|---|
| Llama 3.1 405b Instruct | 8.3 | — | ¥931 | ¥1,861 |
| Llama 2 13b | — | — | ¥310 | ¥310 |
| Llama 2 70b | — | — | ¥310 | ¥310 |
| Llama 2 7b | — | — | ¥207 | ¥207 |
料金はApi.Airforceの従量課金レート(1Mトークンあたり)。コンテキストは最大入力長を示します。
関連モデル
Llama 2 13bMeta · ¥310 / 1MLlama 2 70bMeta · ¥310 / 1MLlama 2 7bMeta · ¥207 / 1MLlama 3 70bMeta · ¥620 / 1MLlama 3 8bMeta · ¥310 / 1MLlama 3.3 70bMeta · ¥67 / 1MLlama 3.3 70b Instruct Fp8 FastMeta · 無料Llama 4 Scout 17b 16e InstructMeta · 無料GPT 5.2 Chat LatestOpenAI · ¥293 / 1MGPT 5.2 CodexOpenAI · ¥293 / 1MGPT 5.3 ChatOpenAI · ¥16,071 / 1MGPT 5.3 Chat LatestOpenAI · ¥293 / 1M
Llama 3.1 405b Instruct — よくある質問
- Llama 3.1 405b Instruct の料金はいくらですか?
- Llama 3.1 405b Instruct は入力1Mトークンあたり ¥931、出力1Mトークンあたり ¥1,861 の従量課金制です。サブスクリプション不要 — 使った分だけ課金されます。
- Llama 3.1 405b Instruct には何ができますか?
- Llama 3.1 405b InstructはMetaのチャットモデルで、Api.Airforce APIからアクセスできます。
- Llama 3.1 405b Instruct は無料で使えますか?
- Llama 3.1 405b Instruct は従量課金制の有料モデルです — サブスクリプション不要、使用量分のみ課金されます。
- APIで Llama 3.1 405b Instruct を使うにはどうすればよいですか?
- Llama 3.1 405b Instruct はOpenAI互換です。任意のOpenAI SDKの向き先を https://api.airforce/v1 に変更し、モデルID llama-3.1-405b-instruct とApi.AirforceのAPIキーを渡してください。
- Llama 3.1 405b Instruct はどこが開発しましたか?
- Llama 3.1 405b InstructはMetaのチャットモデルで、Api.Airforceの統合ゲートウェイを通じて100+の他のモデルとともに提供されています。
リアルタイムメトリクスを読み込み中…
リアルタイムメトリクスを読み込み中…
リアルタイムメトリクスを読み込み中…
APIでLlama 3.1 405b Instructを利用する
OpenAI互換 — 任意のOpenAI SDKをhttps://api.airforce/v1に向け、llama-3.1-405b-instructをモデルとして渡してください。
cURL
curl https://api.airforce/v1/chat/completions \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "llama-3.1-405b-instruct",
"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="llama-3.1-405b-instruct",
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: "llama-3.1-405b-instruct",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(r.choices[0].message.content);