mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
23 lines
866 B
TypeScript
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"],
|
|
});
|
|
}
|