mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 18:00:54 +00:00
6 lines
224 B
TypeScript
6 lines
224 B
TypeScript
import { resolveOpenRouterThinkingProfile } from "./thinking-policy.js";
|
|
|
|
export function resolveThinkingProfile(params: { provider?: string; modelId: string }) {
|
|
return resolveOpenRouterThinkingProfile(params.modelId);
|
|
}
|