mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-12 17:51:22 +00:00
10 lines
283 B
TypeScript
10 lines
283 B
TypeScript
import { normalizeLowercaseStringOrEmpty } from "openclaw/plugin-sdk/text-runtime";
|
|
|
|
export function buildGithubCopilotReplayPolicy(modelId?: string) {
|
|
return normalizeLowercaseStringOrEmpty(modelId).includes("claude")
|
|
? {
|
|
dropThinkingBlocks: true,
|
|
}
|
|
: {};
|
|
}
|