docs: refresh zai glm refs

This commit is contained in:
Peter Steinberger
2026-04-04 09:54:46 +01:00
parent 74d39e9efe
commit 29033400eb
3 changed files with 53 additions and 1 deletions

View File

@@ -275,6 +275,7 @@ OpenClaw ships with the piai catalog. These providers require **no**
- Example model: `zai/glm-5`
- CLI: `openclaw onboard --auth-choice zai-api-key`
- Aliases: `z.ai/*` and `z-ai/*` normalize to `zai/*`
- `zai-api-key` auto-detects the matching Z.AI endpoint; `zai-coding-global`, `zai-coding-cn`, `zai-global`, and `zai-cn` force a specific surface
### Vercel AI Gateway

View File

@@ -14,6 +14,9 @@ models are accessed via the `zai` provider and model IDs like `zai/glm-5`.
## CLI setup
```bash
# Generic API-key setup with endpoint auto-detection
openclaw onboard --auth-choice zai-api-key
# Coding Plan Global, recommended for Coding Plan users
openclaw onboard --auth-choice zai-coding-global
@@ -36,8 +39,30 @@ openclaw onboard --auth-choice zai-cn
}
```
`zai-api-key` lets OpenClaw detect the matching Z.AI endpoint from the key and
apply the correct base URL automatically. Use the explicit regional choices when
you want to force a specific Coding Plan or general API surface.
## Current bundled GLM models
OpenClaw currently seeds the bundled `zai` provider with these GLM refs:
- `glm-5.1`
- `glm-5`
- `glm-5-turbo`
- `glm-5v-turbo`
- `glm-4.7`
- `glm-4.7-flash`
- `glm-4.7-flashx`
- `glm-4.6`
- `glm-4.6v`
- `glm-4.5`
- `glm-4.5-air`
- `glm-4.5-flash`
- `glm-4.5v`
## Notes
- GLM versions and availability can change; check Z.AI's docs for the latest.
- Example model IDs include `glm-5.1`, `glm-5`, `glm-5v-turbo`, `glm-4.7`, and `glm-4.6`.
- Default bundled model ref is `zai/glm-5`.
- For provider details, see [/providers/zai](/providers/zai).

View File

@@ -15,6 +15,9 @@ with a Z.AI API key.
## CLI setup
```bash
# Generic API-key setup with endpoint auto-detection
openclaw onboard --auth-choice zai-api-key
# Coding Plan Global, recommended for Coding Plan users
openclaw onboard --auth-choice zai-coding-global
@@ -37,9 +40,32 @@ openclaw onboard --auth-choice zai-cn
}
```
`zai-api-key` lets OpenClaw detect the matching Z.AI endpoint from the key and
apply the correct base URL automatically. Use the explicit regional choices when
you want to force a specific Coding Plan or general API surface.
## Bundled GLM catalog
OpenClaw currently seeds the bundled `zai` provider with:
- `glm-5.1`
- `glm-5`
- `glm-5-turbo`
- `glm-5v-turbo`
- `glm-4.7`
- `glm-4.7-flash`
- `glm-4.7-flashx`
- `glm-4.6`
- `glm-4.6v`
- `glm-4.5`
- `glm-4.5-air`
- `glm-4.5-flash`
- `glm-4.5v`
## Notes
- GLM models are available as `zai/<model>` (example: `zai/glm-5`).
- Default bundled model ref: `zai/glm-5`
- `tool_stream` is enabled by default for Z.AI tool-call streaming. Set
`agents.defaults.models["zai/<model>"].params.tool_stream` to `false` to disable it.
- See [/providers/glm](/providers/glm) for the model family overview.