1.1 KiB
1.1 KiB
| summary | read_when | ||
|---|---|---|---|
| Use Nebius OpenAI-compatible inference for GLM and other frontier open models |
|
Nebius
Nebius provides OpenAI-compatible inference for frontier and open-source models, including GLM, via the Nebius TokenFactory API. This allows seamless drop-in usage with existing OpenAI-style clients and tooling.
CLI setup
clawdbot onboard --auth-choice nebius-api-key
# or non-interactive
clawdbot onboard --nebius-api-key "$NEBIUS_API_KEY"
Config snippet
{
env: { NEBIUS_API_KEY: "sk-..." },
agents: {
defaults: {
model: {
primary: "nebius/zai-glm-7",
fallbacks: ["nebius/zai-glm-5"]
}
}
}
}
Available models
zai-org/GLM-4.7-FP8– GLM 7zai-org/GLM-4.5– GLM 5
Notes
- Base URL: https://api.tokenfactory.nebius.com/v1
- OpenAI-compatible Chat Completions API
- Model refs use nebius/ format
- Set NEBIUS_API_KEY in the environment or config
- Works with standard OpenAI SDKs (Python, JS, etc.)