mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-24 08:21:39 +00:00
121 lines
4.3 KiB
TypeScript
121 lines
4.3 KiB
TypeScript
import { buildMoonshotProvider } from "../../src/agents/models-config.providers.static.js";
|
|
import {
|
|
createMoonshotThinkingWrapper,
|
|
resolveMoonshotThinkingType,
|
|
} from "../../src/agents/pi-embedded-runner/moonshot-stream-wrappers.js";
|
|
import {
|
|
createPluginBackedWebSearchProvider,
|
|
getScopedCredentialValue,
|
|
setScopedCredentialValue,
|
|
} from "../../src/agents/tools/web-search-plugin-factory.js";
|
|
import {
|
|
applyMoonshotConfig,
|
|
applyMoonshotConfigCn,
|
|
} from "../../src/commands/onboard-auth.config-core.js";
|
|
import { MOONSHOT_DEFAULT_MODEL_REF } from "../../src/commands/onboard-auth.models.js";
|
|
import { emptyPluginConfigSchema } from "../../src/plugins/config-schema.js";
|
|
import { createProviderApiKeyAuthMethod } from "../../src/plugins/provider-api-key-auth.js";
|
|
import type { OpenClawPluginApi } from "../../src/plugins/types.js";
|
|
|
|
const PROVIDER_ID = "moonshot";
|
|
|
|
const moonshotPlugin = {
|
|
id: PROVIDER_ID,
|
|
name: "Moonshot Provider",
|
|
description: "Bundled Moonshot provider plugin",
|
|
configSchema: emptyPluginConfigSchema(),
|
|
register(api: OpenClawPluginApi) {
|
|
api.registerProvider({
|
|
id: PROVIDER_ID,
|
|
label: "Moonshot",
|
|
docsPath: "/providers/moonshot",
|
|
envVars: ["MOONSHOT_API_KEY"],
|
|
auth: [
|
|
createProviderApiKeyAuthMethod({
|
|
providerId: PROVIDER_ID,
|
|
methodId: "api-key",
|
|
label: "Kimi API key (.ai)",
|
|
hint: "Kimi K2.5 + Kimi Coding",
|
|
optionKey: "moonshotApiKey",
|
|
flagName: "--moonshot-api-key",
|
|
envVar: "MOONSHOT_API_KEY",
|
|
promptMessage: "Enter Moonshot API key",
|
|
defaultModel: MOONSHOT_DEFAULT_MODEL_REF,
|
|
expectedProviders: ["moonshot"],
|
|
applyConfig: (cfg) => applyMoonshotConfig(cfg),
|
|
wizard: {
|
|
choiceId: "moonshot-api-key",
|
|
choiceLabel: "Kimi API key (.ai)",
|
|
groupId: "moonshot",
|
|
groupLabel: "Moonshot AI (Kimi K2.5)",
|
|
groupHint: "Kimi K2.5 + Kimi Coding",
|
|
},
|
|
}),
|
|
createProviderApiKeyAuthMethod({
|
|
providerId: PROVIDER_ID,
|
|
methodId: "api-key-cn",
|
|
label: "Kimi API key (.cn)",
|
|
hint: "Kimi K2.5 + Kimi Coding",
|
|
optionKey: "moonshotApiKey",
|
|
flagName: "--moonshot-api-key",
|
|
envVar: "MOONSHOT_API_KEY",
|
|
promptMessage: "Enter Moonshot API key (.cn)",
|
|
defaultModel: MOONSHOT_DEFAULT_MODEL_REF,
|
|
expectedProviders: ["moonshot"],
|
|
applyConfig: (cfg) => applyMoonshotConfigCn(cfg),
|
|
wizard: {
|
|
choiceId: "moonshot-api-key-cn",
|
|
choiceLabel: "Kimi API key (.cn)",
|
|
groupId: "moonshot",
|
|
groupLabel: "Moonshot AI (Kimi K2.5)",
|
|
groupHint: "Kimi K2.5 + Kimi Coding",
|
|
},
|
|
}),
|
|
],
|
|
catalog: {
|
|
order: "simple",
|
|
run: async (ctx) => {
|
|
const apiKey = ctx.resolveProviderApiKey(PROVIDER_ID).apiKey;
|
|
if (!apiKey) {
|
|
return null;
|
|
}
|
|
const explicitProvider = ctx.config.models?.providers?.[PROVIDER_ID];
|
|
const explicitBaseUrl =
|
|
typeof explicitProvider?.baseUrl === "string" ? explicitProvider.baseUrl.trim() : "";
|
|
return {
|
|
provider: {
|
|
...buildMoonshotProvider(),
|
|
...(explicitBaseUrl ? { baseUrl: explicitBaseUrl } : {}),
|
|
apiKey,
|
|
},
|
|
};
|
|
},
|
|
},
|
|
wrapStreamFn: (ctx) => {
|
|
const thinkingType = resolveMoonshotThinkingType({
|
|
configuredThinking: ctx.extraParams?.thinking,
|
|
thinkingLevel: ctx.thinkingLevel,
|
|
});
|
|
return createMoonshotThinkingWrapper(ctx.streamFn, thinkingType);
|
|
},
|
|
});
|
|
api.registerWebSearchProvider(
|
|
createPluginBackedWebSearchProvider({
|
|
id: "kimi",
|
|
label: "Kimi (Moonshot)",
|
|
hint: "Moonshot web search",
|
|
envVars: ["KIMI_API_KEY", "MOONSHOT_API_KEY"],
|
|
placeholder: "sk-...",
|
|
signupUrl: "https://platform.moonshot.cn/",
|
|
docsUrl: "https://docs.openclaw.ai/tools/web",
|
|
autoDetectOrder: 40,
|
|
getCredentialValue: (searchConfig) => getScopedCredentialValue(searchConfig, "kimi"),
|
|
setCredentialValue: (searchConfigTarget, value) =>
|
|
setScopedCredentialValue(searchConfigTarget, "kimi", value),
|
|
}),
|
|
);
|
|
},
|
|
};
|
|
|
|
export default moonshotPlugin;
|