mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-26 13:45:14 +00:00
10 lines
398 B
TypeScript
10 lines
398 B
TypeScript
import { normalizeProviderId } from "openclaw/plugin-sdk/provider-model-shared";
|
|
import { resolveBedrockClaudeThinkingProfile } from "./thinking-policy.js";
|
|
|
|
export function resolveThinkingProfile(params: { provider: string; modelId: string }) {
|
|
if (normalizeProviderId(params.provider) !== "amazon-bedrock") {
|
|
return null;
|
|
}
|
|
return resolveBedrockClaudeThinkingProfile(params.modelId);
|
|
}
|