mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-08 15:51:06 +00:00
8 lines
188 B
TypeScript
8 lines
188 B
TypeScript
export function buildGithubCopilotReplayPolicy(modelId?: string) {
|
|
return (modelId?.toLowerCase() ?? "").includes("claude")
|
|
? {
|
|
dropThinkingBlocks: true,
|
|
}
|
|
: {};
|
|
}
|