Files
openclaw/extensions/tencent/provider-discovery.ts
2026-05-01 11:44:13 +01:00

18 lines
459 B
TypeScript

import type { ProviderPlugin } from "openclaw/plugin-sdk/provider-model-shared";
import { buildTokenHubProvider } from "./provider-catalog.js";
const tencentProviderDiscovery: ProviderPlugin = {
id: "tencent-tokenhub",
label: "Tencent TokenHub",
docsPath: "/providers/models",
auth: [],
staticCatalog: {
order: "simple",
run: async () => ({
provider: buildTokenHubProvider(),
}),
},
};
export default tencentProviderDiscovery;