mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-30 03:11:10 +00:00
13 lines
436 B
TypeScript
13 lines
436 B
TypeScript
// Shared provider catalog helpers for provider plugins.
|
|
//
|
|
// Keep provider-owned exports out of this subpath so plugin loaders can import it
|
|
// without recursing through provider-specific facades.
|
|
|
|
export type { ProviderCatalogContext, ProviderCatalogResult } from "../plugins/types.js";
|
|
|
|
export {
|
|
buildPairedProviderApiKeyCatalog,
|
|
buildSingleProviderApiKeyCatalog,
|
|
findCatalogTemplate,
|
|
} from "../plugins/provider-catalog.js";
|