openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
24 lines (23 loc) • 649 B
JavaScript
import { n as buildBytePlusProvider, t as buildBytePlusCodingProvider } from "../../provider-catalog-Buky2aej.js";
//#region extensions/byteplus/provider-discovery.ts
const bytePlusProviderDiscovery = [{
id: "byteplus",
label: "BytePlus",
docsPath: "/providers/models",
auth: [],
staticCatalog: {
order: "simple",
run: async () => ({ provider: buildBytePlusProvider() })
}
}, {
id: "byteplus-plan",
label: "BytePlus Plan",
docsPath: "/providers/models",
auth: [],
staticCatalog: {
order: "simple",
run: async () => ({ provider: buildBytePlusCodingProvider() })
}
}];
//#endregion
export { bytePlusProviderDiscovery as default };