// Deepinfra setup module handles plugin onboarding behavior. import { createAliasOnlyPresetAppliers, type OpenClawConfig, } from "openclaw/plugin-sdk/provider-onboard"; import { DEEPINFRA_DEFAULT_MODEL_REF } from "./provider-models.js"; export function applyDeepInfraConfig( cfg: OpenClawConfig, modelRef: string = DEEPINFRA_DEFAULT_MODEL_REF, ): OpenClawConfig { return createAliasOnlyPresetAppliers({ modelRef, alias: "DeepInfra" }).applyConfig(cfg); }