openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
15 lines • 780 B
TypeScript
import { i as OpenClawConfig } from "./types.openclaw-DBHlrrVj.js";
//#region extensions/chutes/onboard.d.ts
/**
* Apply Chutes provider configuration without changing the default model.
* Registers all catalog models and sets provider aliases (chutes-fast, etc.).
*/
declare function applyChutesProviderConfig(cfg: OpenClawConfig): OpenClawConfig;
/**
* Apply Chutes provider configuration AND set Chutes as the default model.
*/
declare function applyChutesConfig(cfg: OpenClawConfig): OpenClawConfig;
/** Applies Chutes provider config and sets the default model for API-key auth. */
declare function applyChutesApiKeyConfig(cfg: OpenClawConfig): OpenClawConfig;
//#endregion
export { applyChutesConfig as n, applyChutesProviderConfig as r, applyChutesApiKeyConfig as t };