Files
openclaw/extensions/byteplus/provider-catalog.ts
2026-06-04 08:03:04 -04:00

23 lines
866 B
TypeScript

/**
* BytePlus model provider builders backed by the plugin manifest catalog.
*/
import { buildManifestModelProviderConfig } from "openclaw/plugin-sdk/provider-catalog-shared";
import type { ModelProviderConfig } from "openclaw/plugin-sdk/provider-model-shared";
import manifest from "./openclaw.plugin.json" with { type: "json" };
/** Builds the standard BytePlus model provider config. */
export function buildBytePlusProvider(): ModelProviderConfig {
return buildManifestModelProviderConfig({
providerId: "byteplus",
catalog: manifest.modelCatalog.providers.byteplus,
});
}
/** Builds the BytePlus Plan coding-provider config. */
export function buildBytePlusCodingProvider(): ModelProviderConfig {
return buildManifestModelProviderConfig({
providerId: "byteplus-plan",
catalog: manifest.modelCatalog.providers["byteplus-plan"],
});
}