mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
5b29a1e278
* refactor(providers): consolidate sibling adapters * fix(providers): preserve concrete plugin entry type
39 lines
1.6 KiB
TypeScript
39 lines
1.6 KiB
TypeScript
/**
|
|
* BytePlus provider plugin entrypoint for model and video generation providers.
|
|
*/
|
|
import { buildOpenAICompatibleProviderFamilyCatalog } from "openclaw/plugin-sdk/provider-catalog-live-runtime";
|
|
import { readManifestProviderDefaultModelRef } from "openclaw/plugin-sdk/provider-catalog-shared";
|
|
import { defineSingleProviderPluginEntry } from "openclaw/plugin-sdk/provider-entry";
|
|
import { ensureModelAllowlistEntry } from "openclaw/plugin-sdk/provider-onboard";
|
|
import { BYTEPLUS_PROVIDER_CATALOG } from "./models.js";
|
|
import manifest from "./openclaw.plugin.json" with { type: "json" };
|
|
import { buildBytePlusVideoGenerationProvider } from "./video-generation-provider.js";
|
|
|
|
const PROVIDER_ID = "byteplus";
|
|
const BYTEPLUS_DEFAULT_MODEL_REF = readManifestProviderDefaultModelRef(manifest, "byteplus-plan")!;
|
|
|
|
export default defineSingleProviderPluginEntry({
|
|
id: PROVIDER_ID,
|
|
name: "BytePlus Provider",
|
|
description: "BytePlus provider plugin",
|
|
manifest,
|
|
provider: {
|
|
label: "BytePlus",
|
|
docsPath: "/concepts/model-providers#byteplus-international",
|
|
manifestAuth: {
|
|
defaultModel: BYTEPLUS_DEFAULT_MODEL_REF,
|
|
applyConfig: (cfg) =>
|
|
ensureModelAllowlistEntry({ cfg, modelRef: BYTEPLUS_DEFAULT_MODEL_REF }),
|
|
},
|
|
...buildOpenAICompatibleProviderFamilyCatalog({
|
|
credentialProviderId: PROVIDER_ID,
|
|
entries: BYTEPLUS_PROVIDER_CATALOG.entries,
|
|
staticCatalog: BYTEPLUS_PROVIDER_CATALOG.staticCatalog,
|
|
augmentModelCatalog: BYTEPLUS_PROVIDER_CATALOG.augmentModelCatalog,
|
|
}),
|
|
},
|
|
register(api) {
|
|
api.registerVideoGenerationProvider(buildBytePlusVideoGenerationProvider());
|
|
},
|
|
});
|