mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-07 10:20:42 +00:00
20 lines
574 B
TypeScript
20 lines
574 B
TypeScript
import {
|
|
GPT5_BEHAVIOR_CONTRACT,
|
|
renderGpt5PromptOverlay,
|
|
resolveGpt5SystemPromptContribution,
|
|
} from "openclaw/plugin-sdk/provider-model-shared";
|
|
|
|
export const CODEX_GPT5_BEHAVIOR_CONTRACT = GPT5_BEHAVIOR_CONTRACT;
|
|
|
|
export function resolveCodexSystemPromptContribution(
|
|
params: Parameters<typeof resolveGpt5SystemPromptContribution>[0],
|
|
) {
|
|
return resolveGpt5SystemPromptContribution(params);
|
|
}
|
|
|
|
export function renderCodexPromptOverlay(
|
|
params: Parameters<typeof renderGpt5PromptOverlay>[0],
|
|
): string | undefined {
|
|
return renderGpt5PromptOverlay(params);
|
|
}
|