OVHcloud AI Endpoints
OVHcloud AI Endpoints はフランスホスティングの欧州サーバーレス推論です。ovhcloud.com/en/public-cloud/ai-endpoints/catalog/ の公開カタログは19のオンラインモデルを掲げ、うち7つが€0:NVIDIA Riva TTS(英/独/西/伊)、Qwen3Guard-Gen 0.6B と 8B、そして Stable Diffusion XL。
OVHcloud AI Endpoints はフランスホスティングの欧州サーバーレス推論です。ovhcloud.com/en/public-cloud/ai-endpoints/catalog/ の公開カタログは19のオンラインモデルを掲げ、うち7つが€0:NVIDIA Riva TTS(英/独/西/伊)、Qwen3Guard-Gen 0.6B と 8B、そして Stable Diffusion XL。
Llama 3.3 70B、GPT-OSS 20B/120B、Qwen 3.5/3.6 はキー取得後に従量課金ですが、キーがなくても毎分2回で呼べます。Public Cloud プロジェクトを登録すると毎分400回に上がり、課金が始まります。OpenAI互換アドレスは oai.endpoints.kepler.ai.cloud.ovh.net/v1。プロンプトは学習に使わないと明言しています。
- 無料モデル
- 7
- 最大コンテキスト
- 262K
- 無料プラン
- 7モデルが€0
- 条件
- 不要 — アカウントなし
エンドポイント
ベースURL
https://oai.endpoints.kepler.ai.cloud.ovh.net/v1環境変数
OVH_AI_ENDPOINTS_ACCESS_TOKENレート制限
2 requests/minute anonymous; 400 requests/minute with a key- OpenAI互換
- テキスト
- 画像
- 音声
- 音声
- コード
コード例
npm install openaiimport OpenAI from 'openai'
const client = new OpenAI({
baseURL: 'https://oai.endpoints.kepler.ai.cloud.ovh.net/v1',
apiKey: process.env.OVH_AI_ENDPOINTS_ACCESS_TOKEN
})
const response = await client.chat.completions.create({
model: 'Meta-Llama-3_3-70B-Instruct',
messages: [{ role: 'user', content: 'Explain closures in one paragraph.' }]
})
console.log(response.choices[0].message.content)pip install openaiimport os
from openai import OpenAI
client = OpenAI(
base_url="https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
api_key=os.environ["OVH_AI_ENDPOINTS_ACCESS_TOKEN"],
)
response = client.chat.completions.create(
model="Meta-Llama-3_3-70B-Instruct",
messages=[{"role": "user", "content": "Explain closures in one paragraph."}],
)
print(response.choices[0].message.content)curl https://oai.endpoints.kepler.ai.cloud.ovh.net/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OVH_AI_ENDPOINTS_ACCESS_TOKEN" \
-d '{
"model": "Meta-Llama-3_3-70B-Instruct",
"messages": [{"role": "user", "content": "Explain closures in one paragraph."}]
}'知っておくべきこと
- カタログで€0なのは7モデル:NVIDIA Riva TTS の4音声、Qwen3Guard-Gen 0.6B と 8B、そして Stable Diffusion XL。
- チャットモデル(Llama 3.3 70B、GPT-OSS、Qwen 3.5/3.6)はキー取得後に従量課金。キーなしでも毎分2回で呼べます。
- カタログの5 idが「利用不可」表示:Mistral 7B、Mistral Nemo、Mistral Small 3.2、Qwen3-32B、Qwen3-Coder-30B。
無料で利用できるモデル7
- Riva TTS English
nvr-tts-en-us - Riva TTS German
nvr-tts-de-de - Riva TTS Spanish
nvr-tts-es-es - Riva TTS Italian
nvr-tts-it-it - Qwen 3Guard Gen 0.6B
qwen-guard-gen-06b - Qwen 3Guard Gen 8B
qwen-guard-gen-8b - Stable Diffusion XL
stable-diffusion-xl