mirror of https://github.com/openclaw/openclaw.git
28 lines
963 B
TypeScript
28 lines
963 B
TypeScript
// Curated config-patch helpers for provider onboarding flows.
|
|
|
|
export type { OpenClawConfig } from "../config/config.js";
|
|
export type {
|
|
ModelApi,
|
|
ModelDefinitionConfig,
|
|
ModelProviderConfig,
|
|
} from "../config/types.models.js";
|
|
export {
|
|
applyAgentDefaultModelPrimary,
|
|
applyOnboardAuthAgentModelsAndProviders,
|
|
createDefaultModelPresetAppliers,
|
|
createDefaultModelsPresetAppliers,
|
|
createModelCatalogPresetAppliers,
|
|
applyProviderConfigWithDefaultModelPreset,
|
|
applyProviderConfigWithDefaultModelsPreset,
|
|
applyProviderConfigWithDefaultModel,
|
|
applyProviderConfigWithDefaultModels,
|
|
applyProviderConfigWithModelCatalogPreset,
|
|
applyProviderConfigWithModelCatalog,
|
|
withAgentModelAliases,
|
|
} from "../plugins/provider-onboarding-config.js";
|
|
export type {
|
|
AgentModelAliasEntry,
|
|
ProviderOnboardPresetAppliers,
|
|
} from "../plugins/provider-onboarding-config.js";
|
|
export { ensureModelAllowlistEntry } from "../plugins/provider-model-allowlist.js";
|