mirror of https://github.com/openclaw/openclaw.git
66 lines
2.1 KiB
TypeScript
66 lines
2.1 KiB
TypeScript
import { emptyPluginConfigSchema, type OpenClawPluginApi } from "openclaw/plugin-sdk/core";
|
|
import { ensureModelAllowlistEntry } from "../../src/commands/model-allowlist.js";
|
|
import { createProviderApiKeyAuthMethod } from "../../src/plugins/provider-api-key-auth.js";
|
|
import { buildBytePlusCodingProvider, buildBytePlusProvider } from "./provider-catalog.js";
|
|
|
|
const PROVIDER_ID = "byteplus";
|
|
const BYTEPLUS_DEFAULT_MODEL_REF = "byteplus-plan/ark-code-latest";
|
|
|
|
const byteplusPlugin = {
|
|
id: PROVIDER_ID,
|
|
name: "BytePlus Provider",
|
|
description: "Bundled BytePlus provider plugin",
|
|
configSchema: emptyPluginConfigSchema(),
|
|
register(api: OpenClawPluginApi) {
|
|
api.registerProvider({
|
|
id: PROVIDER_ID,
|
|
label: "BytePlus",
|
|
docsPath: "/concepts/model-providers#byteplus-international",
|
|
envVars: ["BYTEPLUS_API_KEY"],
|
|
auth: [
|
|
createProviderApiKeyAuthMethod({
|
|
providerId: PROVIDER_ID,
|
|
methodId: "api-key",
|
|
label: "BytePlus API key",
|
|
hint: "API key",
|
|
optionKey: "byteplusApiKey",
|
|
flagName: "--byteplus-api-key",
|
|
envVar: "BYTEPLUS_API_KEY",
|
|
promptMessage: "Enter BytePlus API key",
|
|
defaultModel: BYTEPLUS_DEFAULT_MODEL_REF,
|
|
expectedProviders: ["byteplus"],
|
|
applyConfig: (cfg) =>
|
|
ensureModelAllowlistEntry({
|
|
cfg,
|
|
modelRef: BYTEPLUS_DEFAULT_MODEL_REF,
|
|
}),
|
|
wizard: {
|
|
choiceId: "byteplus-api-key",
|
|
choiceLabel: "BytePlus API key",
|
|
groupId: "byteplus",
|
|
groupLabel: "BytePlus",
|
|
groupHint: "API key",
|
|
},
|
|
}),
|
|
],
|
|
catalog: {
|
|
order: "paired",
|
|
run: async (ctx) => {
|
|
const apiKey = ctx.resolveProviderApiKey(PROVIDER_ID).apiKey;
|
|
if (!apiKey) {
|
|
return null;
|
|
}
|
|
return {
|
|
providers: {
|
|
byteplus: { ...buildBytePlusProvider(), apiKey },
|
|
"byteplus-plan": { ...buildBytePlusCodingProvider(), apiKey },
|
|
},
|
|
};
|
|
},
|
|
},
|
|
});
|
|
},
|
|
};
|
|
|
|
export default byteplusPlugin;
|