Essential-ai無料稼働中
Rnj 1
APIモデル名: rnj-1
Rnj 1はEssential-aiのチャットモデルで、Api.Airforceの統合APIで提供されています。 無料ティアでトークンごとのコストなしで利用できます。 1つのキーでOpenAI互換APIを通じてアクセスでき、Api.Airforce上の他の65以上のモデルと併せて利用できます。
料金
仕様
- プロバイダー
- Essential-ai
- タイプ
- チャットモデル
Rnj 1 の活用シーン
- チャットボット・アシスタント — 会話AI、文章作成、要約、Q&A。
Rnj 1 と類似モデルの比較
| モデル | 知能 | コンテキスト | 入力 / 1M | 出力 / 1M |
|---|---|---|---|---|
| Rnj 1 | — | — | 無料 | 無料 |
| Moonshot V1 128k Vision | — | — | ¥665 | ¥2,028 |
| Moonshot V1 32k | — | — | ¥337 | ¥1,349 |
| Moonshot V1 32k Vision | — | — | ¥333 | ¥1,363 |
料金はApi.Airforceの従量課金レート(1Mトークンあたり)。コンテキストは最大入力長を示します。
関連モデル
Moonshot V1 128k VisionMoonshot · ¥665 / 1MMoonshot V1 32kMoonshot · ¥337 / 1MMoonshot V1 32k VisionMoonshot · ¥333 / 1MMoonshot V1 8kMoonshot · ¥133 / 1MMoonshot V1 8k VisionMoonshot · ¥133 / 1MO1OpenAI · ¥508 / 1MO3OpenAI · ¥67 / 1MO3 Deep ResearchOpenAIO3 MiniOpenAI · ¥461 / 1MO3 Mini 01.31OpenAI · ¥461 / 1MO4OpenAI · ¥38 / 1MO4 MiniOpenAI · ¥157 / 1M
Rnj 1 — よくある質問
- Rnj 1 の料金はいくらですか?
- Rnj 1 は無料プランでトークン費用なしで利用できます — APIキーを作成してすぐに開始できます。有料プランではレート制限が緩和されます。
- Rnj 1 には何ができますか?
- Rnj 1はEssential-aiのチャットモデルで、Api.Airforce APIからアクセスできます。
- Rnj 1 は無料で使えますか?
- はい — Rnj 1 は無料プランで利用できます。Api.AirforceのAPIキーがあれば費用なしで使用できます。
- APIで Rnj 1 を使うにはどうすればよいですか?
- Rnj 1 はOpenAI互換です。任意のOpenAI SDKの向き先を https://api.airforce/v1 に変更し、モデルID rnj-1 とApi.AirforceのAPIキーを渡してください。
- Rnj 1 はどこが開発しましたか?
- Rnj 1はEssential-aiのチャットモデルで、Api.Airforceの統合ゲートウェイを通じて100+の他のモデルとともに提供されています。
リアルタイムメトリクスを読み込み中…
リアルタイムメトリクスを読み込み中…
リアルタイムメトリクスを読み込み中…
APIでRnj 1を利用する
OpenAI互換 — 任意のOpenAI SDKをhttps://api.airforce/v1に向け、rnj-1をモデルとして渡してください。
cURL
curl https://api.airforce/v1/chat/completions \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "rnj-1",
"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="rnj-1",
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: "rnj-1",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(r.choices[0].message.content);