mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-29 23:38:55 +00:00
16 lines
471 B
TypeScript
16 lines
471 B
TypeScript
import type { ProviderPlugin } from "openclaw/plugin-sdk/provider-model-shared";
|
|
import { buildGoogleStaticCatalogProvider } from "./provider-catalog.js";
|
|
|
|
const googleProviderDiscovery: ProviderPlugin = {
|
|
id: "google",
|
|
label: "Google AI Studio",
|
|
docsPath: "/providers/models",
|
|
auth: [],
|
|
staticCatalog: {
|
|
order: "simple",
|
|
run: async () => ({ providers: { google: buildGoogleStaticCatalogProvider() } }),
|
|
},
|
|
};
|
|
|
|
export default googleProviderDiscovery;
|