Moonshot AI (Kimi)¶
Moonshot သည် OpenAI-compatible endpoints များဖြင့် Kimi API ကို ပေးပါသည်။ Provider ကို configure လုပ်ပြီး default model ကို moonshot/kimi-k2.5 အဖြစ် သတ်မှတ်ပါ၊ သို့မဟုတ် kimi-coding/k2p5 ဖြင့် Kimi Coding ကို အသုံးပြုပါ။
လက်ရှိ Kimi K2 မော်ဒယ် ID များ:
{/moonshot-kimi-k2-ids:start/ && null}
kimi-k2.5kimi-k2-0905-previewkimi-k2-turbo-previewkimi-k2-thinkingkimi-k2-thinking-turbo{/moonshot-kimi-k2-ids:end/ && null}
openclaw onboard --auth-choice moonshot-api-key
Kimi Coding:
openclaw onboard --auth-choice kimi-code-api-key
မှတ်ချက်: Moonshot နှင့် Kimi Coding သည် သီးခြား provider များဖြစ်ပါသည်။ Keys are not interchangeable, endpoints differ, and model refs differ (Moonshot uses moonshot/..., Kimi Coding uses kimi-coding/...).
Config အတိုချုံး (Moonshot API)¶
{
env: { MOONSHOT_API_KEY: "sk-..." },
agents: {
defaults: {
model: { primary: "moonshot/kimi-k2.5" },
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-aliases:end
},
},
},
models: {
mode: "merge",
providers: {
moonshot: {
baseUrl: "https://api.moonshot.ai/v1",
apiKey: "${MOONSHOT_API_KEY}",
api: "openai-completions",
models: [
// moonshot-kimi-k2-models:start
{
id: "kimi-k2.5",
name: "Kimi K2.5",
reasoning: false,
input: ["text"],
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,
},
{
id: "kimi-k2-thinking",
name: "Kimi K2 Thinking",
reasoning: true,
input: ["text"],
cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
contextWindow: 256000,
maxTokens: 8192,
},
{
id: "kimi-k2-thinking-turbo",
name: "Kimi K2 Thinking Turbo",
reasoning: true,
input: ["text"],
cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
contextWindow: 256000,
maxTokens: 8192,
},
// moonshot-kimi-k2-models:end
],
},
},
},
}
Kimi Coding¶
{
env: { KIMI_API_KEY: "sk-..." },
agents: {
defaults: {
model: { primary: "kimi-coding/k2p5" },
models: {
"kimi-coding/k2p5": { alias: "Kimi K2.5" },
},
},
},
}
မှတ်ချက်များ¶
- Moonshot model refs တွင်
moonshot/<modelId>ကို အသုံးပြုသည်။ Kimi Coding model refs တွင်kimi-coding/<modelId>ကို အသုံးပြုသည်။ - လိုအပ်ပါက စျေးနှုန်းနှင့် context မီတာဒေတာကို
models.providersတွင် အစားထိုး သတ်မှတ်နိုင်သည်။ - မော်ဒယ်တစ်ခုအတွက် Moonshot က context ကန့်သတ်ချက် မတူညီစွာ ထုတ်ပြန်ပါက
contextWindowကို လိုက်လျောညီထွေ ချိန်ညှိပါ။ - နိုင်ငံတကာ endpoint အတွက်
https://api.moonshot.ai/v1ကို အသုံးပြုပါ၊ တရုတ် endpoint အတွက်https://api.moonshot.cn/v1ကို အသုံးပြုပါ။