refactor: remove stale provider helpers

This commit is contained in:
Peter Steinberger
2026-05-01 11:09:47 +01:00
parent 61db2e06d5
commit bf7ac8d8c4
10 changed files with 0 additions and 41 deletions

View File

@@ -1,18 +1,11 @@
import {
GPT5_BEHAVIOR_CONTRACT,
GPT5_FRIENDLY_PROMPT_OVERLAY,
isGpt5ModelId,
renderGpt5PromptOverlay,
resolveGpt5SystemPromptContribution,
} from "openclaw/plugin-sdk/provider-model-shared";
export const CODEX_FRIENDLY_PROMPT_OVERLAY = GPT5_FRIENDLY_PROMPT_OVERLAY;
export const CODEX_GPT5_BEHAVIOR_CONTRACT = GPT5_BEHAVIOR_CONTRACT;
export function shouldApplyCodexPromptOverlay(params: { modelId?: string }): boolean {
return isGpt5ModelId(params.modelId);
}
export function resolveCodexSystemPromptContribution(
params: Parameters<typeof resolveGpt5SystemPromptContribution>[0],
) {