› openai-fast pollinations · text.pollinations.ai/openainot needed Tools: the provider claims it, our call failed Schema: we called it and it worked JSON: we called it and it worked Vision: never probed 316 ms 168/168 13 min ago Copy curl curl .env python node
curl curl https://text.pollinations.ai/openai \
-H 'Content-Type: application/json' \
-d '{"model":"openai-fast","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://text.pollinations.ai/openai
OPENAI_API_KEY=not-needed
OPENAI_MODEL=openai-fast python from openai import OpenAI
client = OpenAI(
base_url="https://text.pollinations.ai/openai",
api_key="not-needed",
)
print(client.chat.completions.create(
model="openai-fast",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://text.pollinations.ai/openai",
apiKey: "not-needed",
});
const reply = await client.chat.completions.create({
model: "openai-fast",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://text.pollinations.ai/openai Model ID openai-fast Auth none — no Authorization header sent Answered answered all 168 checks we made in the last week Last ok 13 min ago Send a test call from your browser
› codestral-latest llm7 · api.llm7.io/v1not needed Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 748 ms 59/62 13 min ago Copy curl curl .env python node
curl curl https://api.llm7.io/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{"model":"codestral-latest","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.llm7.io/v1
OPENAI_API_KEY=not-needed
OPENAI_MODEL=codestral-latest python from openai import OpenAI
client = OpenAI(
base_url="https://api.llm7.io/v1",
api_key="not-needed",
)
print(client.chat.completions.create(
model="codestral-latest",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.llm7.io/v1",
apiKey: "not-needed",
});
const reply = await client.chat.completions.create({
model: "codestral-latest",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.llm7.io/v1 Model ID codestral-latest Auth none — no Authorization header sent Answered answered 59 of the 62 checks we made in the last week Last ok 13 min ago Send a test call from your browser
› minimax-m2.7 llm7 · api.llm7.io/v1not needed Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 3031 ms 53/61 2 h ago Copy curl curl .env python node
curl curl https://api.llm7.io/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{"model":"minimax-m2.7","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://api.llm7.io/v1
OPENAI_API_KEY=not-needed
OPENAI_MODEL=minimax-m2.7 python from openai import OpenAI
client = OpenAI(
base_url="https://api.llm7.io/v1",
api_key="not-needed",
)
print(client.chat.completions.create(
model="minimax-m2.7",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.llm7.io/v1",
apiKey: "not-needed",
});
const reply = await client.chat.completions.create({
model: "minimax-m2.7",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://api.llm7.io/v1 Model ID minimax-m2.7 Auth none — no Authorization header sent Answered answered 53 of the 61 checks we made in the last week Last ok 2 h ago Send a test call from your browser
› Lorbus/Qwen3.6-27B-int4-AutoRound uncloseai · hermes.ai.unturf.com/v1not needed Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 1674 ms 101/151 34 h ago Copy curl curl .env python node
curl curl https://hermes.ai.unturf.com/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{"model":"Lorbus/Qwen3.6-27B-int4-AutoRound","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://hermes.ai.unturf.com/v1
OPENAI_API_KEY=not-needed
OPENAI_MODEL=Lorbus/Qwen3.6-27B-int4-AutoRound python from openai import OpenAI
client = OpenAI(
base_url="https://hermes.ai.unturf.com/v1",
api_key="not-needed",
)
print(client.chat.completions.create(
model="Lorbus/Qwen3.6-27B-int4-AutoRound",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://hermes.ai.unturf.com/v1",
apiKey: "not-needed",
});
const reply = await client.chat.completions.create({
model: "Lorbus/Qwen3.6-27B-int4-AutoRound",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://hermes.ai.unturf.com/v1 Model ID Lorbus/Qwen3.6-27B-int4-AutoRound Auth none — no Authorization header sent Answered answered 101 of the 151 checks we made in the last week Last ok 34 h ago Send a test call from your browser
› Qwen3.8-27B ovh-anonymous · oai.endpoints.kepler.ai.cloud.ovh.net/v1not needed Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 642 ms 4/10 30 h ago Copy curl curl .env python node
curl curl https://oai.endpoints.kepler.ai.cloud.ovh.net/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{"model":"Qwen3.8-27B","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://oai.endpoints.kepler.ai.cloud.ovh.net/v1
OPENAI_API_KEY=not-needed
OPENAI_MODEL=Qwen3.8-27B python from openai import OpenAI
client = OpenAI(
base_url="https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
api_key="not-needed",
)
print(client.chat.completions.create(
model="Qwen3.8-27B",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
apiKey: "not-needed",
});
const reply = await client.chat.completions.create({
model: "Qwen3.8-27B",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://oai.endpoints.kepler.ai.cloud.ovh.net/v1 Model ID Qwen3.8-27B Auth none — no Authorization header sent Answered answered 4 of the 10 checks we made in the last week Last ok 30 h ago Send a test call from your browser
› Mistral-Nemo-Instruct-2407 ovh-anonymous · oai.endpoints.kepler.ai.cloud.ovh.net/v1not needed Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 513 ms 4/11 2 days ago Copy curl curl .env python node
curl curl https://oai.endpoints.kepler.ai.cloud.ovh.net/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{"model":"Mistral-Nemo-Instruct-2407","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://oai.endpoints.kepler.ai.cloud.ovh.net/v1
OPENAI_API_KEY=not-needed
OPENAI_MODEL=Mistral-Nemo-Instruct-2407 python from openai import OpenAI
client = OpenAI(
base_url="https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
api_key="not-needed",
)
print(client.chat.completions.create(
model="Mistral-Nemo-Instruct-2407",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
apiKey: "not-needed",
});
const reply = await client.chat.completions.create({
model: "Mistral-Nemo-Instruct-2407",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://oai.endpoints.kepler.ai.cloud.ovh.net/v1 Model ID Mistral-Nemo-Instruct-2407 Auth none — no Authorization header sent Answered answered 4 of the 11 checks we made in the last week Last ok 2 days ago Send a test call from your browser
› gpt-oss-20b ovh-anonymous · oai.endpoints.kepler.ai.cloud.ovh.net/v1not needed Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: never probed 644 ms 4/11 27 h ago Copy curl curl .env python node
curl curl https://oai.endpoints.kepler.ai.cloud.ovh.net/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{"model":"gpt-oss-20b","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://oai.endpoints.kepler.ai.cloud.ovh.net/v1
OPENAI_API_KEY=not-needed
OPENAI_MODEL=gpt-oss-20b python from openai import OpenAI
client = OpenAI(
base_url="https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
api_key="not-needed",
)
print(client.chat.completions.create(
model="gpt-oss-20b",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
apiKey: "not-needed",
});
const reply = await client.chat.completions.create({
model: "gpt-oss-20b",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://oai.endpoints.kepler.ai.cloud.ovh.net/v1 Model ID gpt-oss-20b Auth none — no Authorization header sent Answered answered 4 of the 11 checks we made in the last week Last ok 27 h ago Send a test call from your browser
› Mistral-7B-Instruct-v0.3 ovh-anonymous · oai.endpoints.kepler.ai.cloud.ovh.net/v1not needed Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 1543 ms 3/10 3 h ago Copy curl curl .env python node
curl curl https://oai.endpoints.kepler.ai.cloud.ovh.net/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{"model":"Mistral-7B-Instruct-v0.3","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://oai.endpoints.kepler.ai.cloud.ovh.net/v1
OPENAI_API_KEY=not-needed
OPENAI_MODEL=Mistral-7B-Instruct-v0.3 python from openai import OpenAI
client = OpenAI(
base_url="https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
api_key="not-needed",
)
print(client.chat.completions.create(
model="Mistral-7B-Instruct-v0.3",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
apiKey: "not-needed",
});
const reply = await client.chat.completions.create({
model: "Mistral-7B-Instruct-v0.3",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://oai.endpoints.kepler.ai.cloud.ovh.net/v1 Model ID Mistral-7B-Instruct-v0.3 Auth none — no Authorization header sent Answered answered 3 of the 10 checks we made in the last week Last ok 3 h ago Send a test call from your browser
› RedHatAI/Qwen3.8-27B-INT4 uncloseai · hermes.ai.unturf.com/v1not needed Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 783 ms 4/17 25 h ago Copy curl curl .env python node
curl curl https://hermes.ai.unturf.com/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{"model":"RedHatAI/Qwen3.8-27B-INT4","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://hermes.ai.unturf.com/v1
OPENAI_API_KEY=not-needed
OPENAI_MODEL=RedHatAI/Qwen3.8-27B-INT4 python from openai import OpenAI
client = OpenAI(
base_url="https://hermes.ai.unturf.com/v1",
api_key="not-needed",
)
print(client.chat.completions.create(
model="RedHatAI/Qwen3.8-27B-INT4",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://hermes.ai.unturf.com/v1",
apiKey: "not-needed",
});
const reply = await client.chat.completions.create({
model: "RedHatAI/Qwen3.8-27B-INT4",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://hermes.ai.unturf.com/v1 Model ID RedHatAI/Qwen3.8-27B-INT4 Auth none — no Authorization header sent Answered answered 4 of the 17 checks we made in the last week Last ok 25 h ago Send a test call from your browser
› Qwen2.5-VL-72B-Instruct ovh-anonymous · oai.endpoints.kepler.ai.cloud.ovh.net/v1not needed Tools: we called it and it failed Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 769 ms 2/10 2 days ago Copy curl curl .env python node
curl curl https://oai.endpoints.kepler.ai.cloud.ovh.net/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{"model":"Qwen2.5-VL-72B-Instruct","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://oai.endpoints.kepler.ai.cloud.ovh.net/v1
OPENAI_API_KEY=not-needed
OPENAI_MODEL=Qwen2.5-VL-72B-Instruct python from openai import OpenAI
client = OpenAI(
base_url="https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
api_key="not-needed",
)
print(client.chat.completions.create(
model="Qwen2.5-VL-72B-Instruct",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
apiKey: "not-needed",
});
const reply = await client.chat.completions.create({
model: "Qwen2.5-VL-72B-Instruct",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://oai.endpoints.kepler.ai.cloud.ovh.net/v1 Model ID Qwen2.5-VL-72B-Instruct Auth none — no Authorization header sent Answered answered 2 of the 10 checks we made in the last week Last ok 2 days ago Send a test call from your browser
› Qwen3.6-27B ovh-anonymous · oai.endpoints.kepler.ai.cloud.ovh.net/v1not needed Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 729 ms 2/11 4 days ago Copy curl curl .env python node
curl curl https://oai.endpoints.kepler.ai.cloud.ovh.net/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{"model":"Qwen3.6-27B","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://oai.endpoints.kepler.ai.cloud.ovh.net/v1
OPENAI_API_KEY=not-needed
OPENAI_MODEL=Qwen3.6-27B python from openai import OpenAI
client = OpenAI(
base_url="https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
api_key="not-needed",
)
print(client.chat.completions.create(
model="Qwen3.6-27B",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
apiKey: "not-needed",
});
const reply = await client.chat.completions.create({
model: "Qwen3.6-27B",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://oai.endpoints.kepler.ai.cloud.ovh.net/v1 Model ID Qwen3.6-27B Auth none — no Authorization header sent Answered answered 2 of the 11 checks we made in the last week Last ok 4 days ago Send a test call from your browser
› Qwen3-32B ovh-anonymous · oai.endpoints.kepler.ai.cloud.ovh.net/v1not needed Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 1237 ms 2/11 3 days ago Copy curl curl .env python node
curl curl https://oai.endpoints.kepler.ai.cloud.ovh.net/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{"model":"Qwen3-32B","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://oai.endpoints.kepler.ai.cloud.ovh.net/v1
OPENAI_API_KEY=not-needed
OPENAI_MODEL=Qwen3-32B python from openai import OpenAI
client = OpenAI(
base_url="https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
api_key="not-needed",
)
print(client.chat.completions.create(
model="Qwen3-32B",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
apiKey: "not-needed",
});
const reply = await client.chat.completions.create({
model: "Qwen3-32B",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://oai.endpoints.kepler.ai.cloud.ovh.net/v1 Model ID Qwen3-32B Auth none — no Authorization header sent Answered answered 2 of the 11 checks we made in the last week Last ok 3 days ago Send a test call from your browser
› Qwen3-Coder-30B-A3B-Instruct ovh-anonymous · oai.endpoints.kepler.ai.cloud.ovh.net/v1not needed Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 3410 ms 1/11 3 days ago Copy curl curl .env python node
curl curl https://oai.endpoints.kepler.ai.cloud.ovh.net/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{"model":"Qwen3-Coder-30B-A3B-Instruct","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://oai.endpoints.kepler.ai.cloud.ovh.net/v1
OPENAI_API_KEY=not-needed
OPENAI_MODEL=Qwen3-Coder-30B-A3B-Instruct python from openai import OpenAI
client = OpenAI(
base_url="https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
api_key="not-needed",
)
print(client.chat.completions.create(
model="Qwen3-Coder-30B-A3B-Instruct",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
apiKey: "not-needed",
});
const reply = await client.chat.completions.create({
model: "Qwen3-Coder-30B-A3B-Instruct",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://oai.endpoints.kepler.ai.cloud.ovh.net/v1 Model ID Qwen3-Coder-30B-A3B-Instruct Auth none — no Authorization header sent Answered answered 1 of the 11 checks we made in the last week Last ok 3 days ago Send a test call from your browser
› Qwen3.5-397B-A17B ovh-anonymous · oai.endpoints.kepler.ai.cloud.ovh.net/v1not needed Tools: we called it and it worked Schema: we called it and it worked JSON: never probed Vision: we called it and it worked 468 ms 0/10 7 days ago Copy curl curl .env python node
curl curl https://oai.endpoints.kepler.ai.cloud.ovh.net/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{"model":"Qwen3.5-397B-A17B","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://oai.endpoints.kepler.ai.cloud.ovh.net/v1
OPENAI_API_KEY=not-needed
OPENAI_MODEL=Qwen3.5-397B-A17B python from openai import OpenAI
client = OpenAI(
base_url="https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
api_key="not-needed",
)
print(client.chat.completions.create(
model="Qwen3.5-397B-A17B",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
apiKey: "not-needed",
});
const reply = await client.chat.completions.create({
model: "Qwen3.5-397B-A17B",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://oai.endpoints.kepler.ai.cloud.ovh.net/v1 Model ID Qwen3.5-397B-A17B Auth none — no Authorization header sent Answered answered 0 of the 10 checks we made in the last week Last ok 7 days ago Send a test call from your browser
› gpt-oss-120b ovh-anonymous · oai.endpoints.kepler.ai.cloud.ovh.net/v1not needed Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it failed 623 ms 0/11 8 days ago Copy curl curl .env python node
curl curl https://oai.endpoints.kepler.ai.cloud.ovh.net/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{"model":"gpt-oss-120b","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://oai.endpoints.kepler.ai.cloud.ovh.net/v1
OPENAI_API_KEY=not-needed
OPENAI_MODEL=gpt-oss-120b python from openai import OpenAI
client = OpenAI(
base_url="https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
api_key="not-needed",
)
print(client.chat.completions.create(
model="gpt-oss-120b",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
apiKey: "not-needed",
});
const reply = await client.chat.completions.create({
model: "gpt-oss-120b",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://oai.endpoints.kepler.ai.cloud.ovh.net/v1 Model ID gpt-oss-120b Auth none — no Authorization header sent Answered answered 0 of the 11 checks we made in the last week Last ok 8 days ago Send a test call from your browser
› Mistral-Small-3.2-24B-Instruct-2506 ovh-anonymous · oai.endpoints.kepler.ai.cloud.ovh.net/v1not needed Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 670 ms 0/11 12 days ago Copy curl curl .env python node
curl curl https://oai.endpoints.kepler.ai.cloud.ovh.net/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{"model":"Mistral-Small-3.2-24B-Instruct-2506","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://oai.endpoints.kepler.ai.cloud.ovh.net/v1
OPENAI_API_KEY=not-needed
OPENAI_MODEL=Mistral-Small-3.2-24B-Instruct-2506 python from openai import OpenAI
client = OpenAI(
base_url="https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
api_key="not-needed",
)
print(client.chat.completions.create(
model="Mistral-Small-3.2-24B-Instruct-2506",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
apiKey: "not-needed",
});
const reply = await client.chat.completions.create({
model: "Mistral-Small-3.2-24B-Instruct-2506",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://oai.endpoints.kepler.ai.cloud.ovh.net/v1 Model ID Mistral-Small-3.2-24B-Instruct-2506 Auth none — no Authorization header sent Answered answered 0 of the 11 checks we made in the last week Last ok 12 days ago Send a test call from your browser
› Qwen3.5-9B ovh-anonymous · oai.endpoints.kepler.ai.cloud.ovh.net/v1not needed Tools: we called it and it worked Schema: we called it and it worked JSON: we called it and it worked Vision: we called it and it worked 1162 ms 0/11 5 days ago Copy curl curl .env python node
curl curl https://oai.endpoints.kepler.ai.cloud.ovh.net/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{"model":"Qwen3.5-9B","messages":[{"role":"user","content":"hello"}]}'.env OPENAI_BASE_URL=https://oai.endpoints.kepler.ai.cloud.ovh.net/v1
OPENAI_API_KEY=not-needed
OPENAI_MODEL=Qwen3.5-9B python from openai import OpenAI
client = OpenAI(
base_url="https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
api_key="not-needed",
)
print(client.chat.completions.create(
model="Qwen3.5-9B",
messages=[{"role": "user", "content": "hello"}],
).choices[0].message.content) node import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://oai.endpoints.kepler.ai.cloud.ovh.net/v1",
apiKey: "not-needed",
});
const reply = await client.chat.completions.create({
model: "Qwen3.5-9B",
messages: [{ role: "user", content: "hello" }],
});
console.log(reply.choices[0].message.content);Base URL https://oai.endpoints.kepler.ai.cloud.ovh.net/v1 Model ID Qwen3.5-9B Auth none — no Authorization header sent Answered answered 0 of the 11 checks we made in the last week Last ok 5 days ago Send a test call from your browser