mirror of https://github.com/openclaw/openclaw.git
28 lines
1008 B
TypeScript
28 lines
1008 B
TypeScript
import { KILOCODE_BASE_URL, KILOCODE_DEFAULT_MODEL_REF } from "openclaw/plugin-sdk/provider-models";
|
|
import {
|
|
createModelCatalogPresetAppliers,
|
|
type OpenClawConfig,
|
|
} from "openclaw/plugin-sdk/provider-onboard";
|
|
import { buildKilocodeProvider } from "./provider-catalog.js";
|
|
|
|
export { KILOCODE_BASE_URL, KILOCODE_DEFAULT_MODEL_REF };
|
|
|
|
const kilocodePresetAppliers = createModelCatalogPresetAppliers({
|
|
primaryModelRef: KILOCODE_DEFAULT_MODEL_REF,
|
|
resolveParams: (_cfg: OpenClawConfig) => ({
|
|
providerId: "kilocode",
|
|
api: "openai-completions",
|
|
baseUrl: KILOCODE_BASE_URL,
|
|
catalogModels: buildKilocodeProvider().models ?? [],
|
|
aliases: [{ modelRef: KILOCODE_DEFAULT_MODEL_REF, alias: "Kilo Gateway" }],
|
|
}),
|
|
});
|
|
|
|
export function applyKilocodeProviderConfig(cfg: OpenClawConfig): OpenClawConfig {
|
|
return kilocodePresetAppliers.applyProviderConfig(cfg);
|
|
}
|
|
|
|
export function applyKilocodeConfig(cfg: OpenClawConfig): OpenClawConfig {
|
|
return kilocodePresetAppliers.applyConfig(cfg);
|
|
}
|