From 05baeb2adad973360a54a6ee2fb614808f332db7 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 4 Apr 2026 09:49:13 +0100 Subject: [PATCH] docs: refresh moonshot catalog refs --- docs/concepts/model-providers.md | 5 ++-- docs/providers/moonshot.md | 50 ++++++++++++++------------------ 2 files changed, 24 insertions(+), 31 deletions(-) diff --git a/docs/concepts/model-providers.md b/docs/concepts/model-providers.md index 1beb5692fca..cd4dc5995e5 100644 --- a/docs/concepts/model-providers.md +++ b/docs/concepts/model-providers.md @@ -367,17 +367,16 @@ need to override the base URL or model metadata: - Provider: `moonshot` - Auth: `MOONSHOT_API_KEY` - Example model: `moonshot/kimi-k2.5` -- CLI: `openclaw onboard --auth-choice moonshot-api-key` +- CLI: `openclaw onboard --auth-choice moonshot-api-key` or `openclaw onboard --auth-choice moonshot-api-key-cn` Kimi K2 model IDs: [//]: # "moonshot-kimi-k2-model-refs:start" - `moonshot/kimi-k2.5` -- `moonshot/kimi-k2-0905-preview` -- `moonshot/kimi-k2-turbo-preview` - `moonshot/kimi-k2-thinking` - `moonshot/kimi-k2-thinking-turbo` +- `moonshot/kimi-k2-turbo` [//]: # "moonshot-kimi-k2-model-refs:end" diff --git a/docs/providers/moonshot.md b/docs/providers/moonshot.md index b1c0d61efc6..5440e797520 100644 --- a/docs/providers/moonshot.md +++ b/docs/providers/moonshot.md @@ -18,15 +18,16 @@ Current Kimi K2 model IDs: [//]: # "moonshot-kimi-k2-ids:start" - `kimi-k2.5` -- `kimi-k2-0905-preview` -- `kimi-k2-turbo-preview` - `kimi-k2-thinking` - `kimi-k2-thinking-turbo` +- `kimi-k2-turbo` [//]: # "moonshot-kimi-k2-ids:end" ```bash openclaw onboard --auth-choice moonshot-api-key +# or +openclaw onboard --auth-choice moonshot-api-key-cn ``` Kimi Coding: @@ -57,10 +58,9 @@ Choose **Kimi** in the web-search section to store models: { // moonshot-kimi-k2-aliases:start "moonshot/kimi-k2.5": { alias: "Kimi K2.5" }, - "moonshot/kimi-k2-0905-preview": { alias: "Kimi K2" }, - "moonshot/kimi-k2-turbo-preview": { alias: "Kimi K2 Turbo" }, "moonshot/kimi-k2-thinking": { alias: "Kimi K2 Thinking" }, "moonshot/kimi-k2-thinking-turbo": { alias: "Kimi K2 Thinking Turbo" }, + "moonshot/kimi-k2-turbo": { alias: "Kimi K2 Turbo" }, // moonshot-kimi-k2-aliases:end }, }, @@ -78,28 +78,10 @@ Choose **Kimi** in the web-search section to store id: "kimi-k2.5", name: "Kimi K2.5", reasoning: false, - input: ["text"], + input: ["text", "image"], cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 }, - contextWindow: 256000, - maxTokens: 8192, - }, - { - id: "kimi-k2-0905-preview", - name: "Kimi K2 0905 Preview", - reasoning: false, - input: ["text"], - cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 }, - contextWindow: 256000, - maxTokens: 8192, - }, - { - id: "kimi-k2-turbo-preview", - name: "Kimi K2 Turbo", - reasoning: false, - input: ["text"], - cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 }, - contextWindow: 256000, - maxTokens: 8192, + contextWindow: 262144, + maxTokens: 262144, }, { id: "kimi-k2-thinking", @@ -107,8 +89,8 @@ Choose **Kimi** in the web-search section to store reasoning: true, input: ["text"], cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 }, - contextWindow: 256000, - maxTokens: 8192, + contextWindow: 262144, + maxTokens: 262144, }, { id: "kimi-k2-thinking-turbo", @@ -116,8 +98,17 @@ Choose **Kimi** in the web-search section to store reasoning: true, input: ["text"], cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 }, + contextWindow: 262144, + maxTokens: 262144, + }, + { + id: "kimi-k2-turbo", + name: "Kimi K2 Turbo", + reasoning: false, + input: ["text"], + cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 }, contextWindow: 256000, - maxTokens: 8192, + maxTokens: 16384, }, // moonshot-kimi-k2-models:end ], @@ -191,6 +182,9 @@ Config lives under `plugins.entries.moonshot.config.webSearch`: - If Moonshot publishes different context limits for a model, adjust `contextWindow` accordingly. - Use `https://api.moonshot.ai/v1` for the international endpoint, and `https://api.moonshot.cn/v1` for the China endpoint. +- Onboarding choices: + - `moonshot-api-key` for `https://api.moonshot.ai/v1` + - `moonshot-api-key-cn` for `https://api.moonshot.cn/v1` ## Native thinking mode (Moonshot)