mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-04 00:14:04 +00:00
37 lines
1.3 KiB
TypeScript
37 lines
1.3 KiB
TypeScript
import { modelSelectionShouldEnsureCodexPlugin } from "../agents/openai-codex-routing.js";
|
|
import type { OpenClawConfig } from "../config/types.openclaw.js";
|
|
import {
|
|
createRuntimePluginModelSelectionHelpers,
|
|
type RuntimePluginInstallResult,
|
|
} from "./runtime-plugin-install.js";
|
|
|
|
export const CODEX_RUNTIME_PLUGIN_ID = "codex";
|
|
const CODEX_RUNTIME_PLUGIN_LABEL = "Codex";
|
|
const CODEX_RUNTIME_PLUGIN_NPM_SPEC = "@openclaw/codex";
|
|
const CODEX_RUNTIME_PLUGIN_DESCRIPTOR = {
|
|
pluginId: CODEX_RUNTIME_PLUGIN_ID,
|
|
label: CODEX_RUNTIME_PLUGIN_LABEL,
|
|
npmSpec: CODEX_RUNTIME_PLUGIN_NPM_SPEC,
|
|
warningLabel: CODEX_RUNTIME_PLUGIN_LABEL,
|
|
};
|
|
|
|
export type CodexRuntimePluginInstallResult = RuntimePluginInstallResult;
|
|
|
|
export function selectedModelShouldEnsureCodexRuntimePlugin(params: {
|
|
cfg: OpenClawConfig;
|
|
model?: string;
|
|
}): boolean {
|
|
return modelSelectionShouldEnsureCodexPlugin({
|
|
config: params.cfg,
|
|
model: params.model,
|
|
});
|
|
}
|
|
|
|
const codexRuntimePluginInstall = createRuntimePluginModelSelectionHelpers({
|
|
descriptor: CODEX_RUNTIME_PLUGIN_DESCRIPTOR,
|
|
shouldEnsure: selectedModelShouldEnsureCodexRuntimePlugin,
|
|
});
|
|
|
|
export const ensureCodexRuntimePluginForModelSelection = codexRuntimePluginInstall.ensure;
|
|
export const repairCodexRuntimePluginInstallForModelSelection = codexRuntimePluginInstall.repair;
|