mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 16:01:01 +00:00
18 lines
466 B
TypeScript
18 lines
466 B
TypeScript
import type { ProviderPlugin } from "openclaw/plugin-sdk/provider-model-shared";
|
|
import { buildTokenHubProvider } from "./provider-catalog.js";
|
|
|
|
export const tencentProviderDiscovery: ProviderPlugin = {
|
|
id: "tencent-tokenhub",
|
|
label: "Tencent TokenHub",
|
|
docsPath: "/providers/models",
|
|
auth: [],
|
|
staticCatalog: {
|
|
order: "simple",
|
|
run: async () => ({
|
|
provider: buildTokenHubProvider(),
|
|
}),
|
|
},
|
|
};
|
|
|
|
export default tencentProviderDiscovery;
|