xAI無料稼働中
Grok 4.1 Fast Free
APIモデル名: grok-4.1-fast-free
Grok 4.1 Fast FreeはxAIのチャットモデルで、Api.Airforceの統合APIで提供されています。 無料ティアでトークンごとのコストなしで利用できます。 1つのキーでOpenAI互換APIを通じてアクセスでき、Api.Airforce上の他の65以上のモデルと併せて利用できます。
料金
仕様
- プロバイダー
- xAI
- タイプ
- チャットモデル
ベンチマーク
Artificial Analysis による独立した評価と実測速度。
知能指数
38.6/100
コーディング指数
30.9/100
数学指数
89.3/100
MMLU-Pro85%
GPQA Diamond85%
Humanity's Last Exam18%
LiveCodeBench82%
AIME 202589%
出典: Benchmark data by Artificial Analysis (artificialanalysis.ai)
Grok 4.1 Fast Free の活用シーン
- チャットボット・アシスタント — 会話AI、文章作成、要約、Q&A。
Grok 4.1 Fast Free と類似モデルの比較
| モデル | 知能 | コンテキスト | 入力 / 1M | 出力 / 1M |
|---|---|---|---|---|
| Grok 4.1 Fast Free | 38.6 | — | 無料 | 無料 |
| Grok 2 Vision | — | — | ¥504 | ¥2,516 |
| Grok 3 | — | — | ¥73 | ¥364 |
| Grok 3 Deepsearch | — | — | ¥68 | ¥344 |
料金はApi.Airforceの従量課金レート(1Mトークンあたり)。コンテキストは最大入力長を示します。
関連モデル
Grok 2 VisionxAI · ¥504 / 1MGrok 3xAI · ¥73 / 1MGrok 3 DeepsearchxAI · ¥68 / 1MGrok 3 FastxAI · ¥1,256 / 1MGrok 3 MinixAI · ¥10 / 1MGrok 3 Mini FastxAI · ¥150 / 1MGrok 3 ReasonerxAI · ¥68 / 1MGrok 4xAI · ¥113 / 1MGrok 4 FastxAI · ¥24 / 1MGrok 4 FreexAI · 無料Grok 4 HeavyxAI · 無料Grok 4 ThinkingxAI · ¥291 / 1M
Grok 4.1 Fast Free — よくある質問
- Grok 4.1 Fast Free の料金はいくらですか?
- Grok 4.1 Fast Free は無料プランでトークン費用なしで利用できます — APIキーを作成してすぐに開始できます。有料プランではレート制限が緩和されます。
- Grok 4.1 Fast Free には何ができますか?
- Grok 4.1 Fast FreeはxAIのチャットモデルで、Api.Airforce APIからアクセスできます。
- Grok 4.1 Fast Free は無料で使えますか?
- はい — Grok 4.1 Fast Free は無料プランで利用できます。Api.AirforceのAPIキーがあれば費用なしで使用できます。
- APIで Grok 4.1 Fast Free を使うにはどうすればよいですか?
- Grok 4.1 Fast Free はOpenAI互換です。任意のOpenAI SDKの向き先を https://api.airforce/v1 に変更し、モデルID grok-4.1-fast-free とApi.AirforceのAPIキーを渡してください。
- Grok 4.1 Fast Free はどこが開発しましたか?
- Grok 4.1 Fast FreeはxAIのチャットモデルで、Api.Airforceの統合ゲートウェイを通じて100+の他のモデルとともに提供されています。
リアルタイムメトリクスを読み込み中…
リアルタイムメトリクスを読み込み中…
リアルタイムメトリクスを読み込み中…
APIでGrok 4.1 Fast Freeを利用する
OpenAI互換 — 任意のOpenAI SDKをhttps://api.airforce/v1に向け、grok-4.1-fast-freeをモデルとして渡してください。
cURL
curl https://api.airforce/v1/chat/completions \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "grok-4.1-fast-free",
"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="grok-4.1-fast-free",
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: "grok-4.1-fast-free",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(r.choices[0].message.content);