mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-25 12:49:32 +00:00
28 lines
1022 B
TypeScript
28 lines
1022 B
TypeScript
import {
|
|
createModelCatalogPresetAppliers,
|
|
type OpenClawConfig,
|
|
} from "openclaw/plugin-sdk/provider-onboard";
|
|
import { buildCohereModelDefinition, COHERE_BASE_URL, COHERE_MODEL_CATALOG } from "./models.js";
|
|
|
|
export const COHERE_DEFAULT_MODEL_ID = "command-a-03-2025";
|
|
export const COHERE_DEFAULT_MODEL_REF = `cohere/${COHERE_DEFAULT_MODEL_ID}`;
|
|
|
|
const coherePresetAppliers = createModelCatalogPresetAppliers({
|
|
primaryModelRef: COHERE_DEFAULT_MODEL_REF,
|
|
resolveParams: (_cfg: OpenClawConfig) => ({
|
|
providerId: "cohere",
|
|
api: "openai-completions",
|
|
baseUrl: COHERE_BASE_URL,
|
|
catalogModels: COHERE_MODEL_CATALOG.map(buildCohereModelDefinition),
|
|
aliases: [{ modelRef: COHERE_DEFAULT_MODEL_REF, alias: "Cohere Command A" }],
|
|
}),
|
|
});
|
|
|
|
export function applyCohereProviderConfig(cfg: OpenClawConfig): OpenClawConfig {
|
|
return coherePresetAppliers.applyProviderConfig(cfg);
|
|
}
|
|
|
|
export function applyCohereConfig(cfg: OpenClawConfig): OpenClawConfig {
|
|
return coherePresetAppliers.applyConfig(cfg);
|
|
}
|