openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
89 lines (88 loc) • 3.12 kB
JavaScript
import { t as definePluginEntry } from "../../plugin-entry-C7DUzV0e.js";
import { t as createProviderApiKeyAuthMethod } from "../../provider-api-key-auth-VMMQYUA9.js";
import { m as ensureModelAllowlistEntry } from "../../provider-onboard-CBhOzm7U.js";
import "../../provider-auth-api-key-nSdfYNnB.js";
import { n as buildDoubaoProvider, t as buildDoubaoCodingProvider } from "../../provider-catalog-Cfg7HXK7.js";
import { i as DOUBAO_MODEL_CATALOG, r as DOUBAO_CODING_MODEL_CATALOG } from "../../models-DKsBDoCN.js";
import { n as applyVolcengineToolSchemaCompat } from "../../api-DnDsjATF.js";
import { t as buildVolcengineSpeechProvider } from "../../speech-provider-yzf-02JT.js";
//#region extensions/volcengine/index.ts
const PROVIDER_ID = "volcengine";
const VOLCENGINE_DEFAULT_MODEL_REF = "volcengine-plan/ark-code-latest";
var volcengine_default = definePluginEntry({
id: PROVIDER_ID,
name: "Volcengine Provider",
description: "Bundled Volcengine provider plugin",
register(api) {
api.registerProvider({
id: PROVIDER_ID,
label: "Volcengine",
docsPath: "/concepts/model-providers#volcano-engine-doubao",
envVars: ["VOLCANO_ENGINE_API_KEY"],
hookAliases: ["volcengine-plan"],
auth: [createProviderApiKeyAuthMethod({
providerId: PROVIDER_ID,
methodId: "api-key",
label: "Volcano Engine API key",
hint: "API key",
optionKey: "volcengineApiKey",
flagName: "--volcengine-api-key",
envVar: "VOLCANO_ENGINE_API_KEY",
promptMessage: "Enter Volcano Engine API key",
defaultModel: VOLCENGINE_DEFAULT_MODEL_REF,
expectedProviders: ["volcengine"],
applyConfig: (cfg) => ensureModelAllowlistEntry({
cfg,
modelRef: VOLCENGINE_DEFAULT_MODEL_REF
}),
wizard: {
choiceId: "volcengine-api-key",
choiceLabel: "Volcano Engine API key",
groupId: "volcengine",
groupLabel: "Volcano Engine",
groupHint: "API key"
}
})],
catalog: {
order: "paired",
run: async (ctx) => {
const apiKey = ctx.resolveProviderApiKey(PROVIDER_ID).apiKey;
if (!apiKey) return null;
return { providers: {
volcengine: {
...buildDoubaoProvider(),
apiKey
},
"volcengine-plan": {
...buildDoubaoCodingProvider(),
apiKey
}
} };
}
},
augmentModelCatalog: () => {
const volcengineModels = DOUBAO_MODEL_CATALOG.map((entry) => ({
provider: "volcengine",
id: entry.id,
name: entry.name,
reasoning: entry.reasoning,
input: [...entry.input],
contextWindow: entry.contextWindow
}));
const volcenginePlanModels = DOUBAO_CODING_MODEL_CATALOG.map((entry) => ({
provider: "volcengine-plan",
id: entry.id,
name: entry.name,
reasoning: entry.reasoning,
input: [...entry.input],
contextWindow: entry.contextWindow
}));
return [...volcengineModels, ...volcenginePlanModels];
},
normalizeResolvedModel: ({ model }) => applyVolcengineToolSchemaCompat(model)
});
api.registerSpeechProvider(buildVolcengineSpeechProvider());
}
});
//#endregion
export { volcengine_default as default };