Files
openclaw/extensions/openrouter/provider-policy-api.ts
2026-06-04 21:02:07 -04:00

7 lines
285 B
TypeScript

// Openrouter API module exposes the plugin public contract.
import { resolveOpenRouterThinkingProfile } from "./thinking-policy.js";
export function resolveThinkingProfile(params: { provider?: string; modelId: string }) {
return resolveOpenRouterThinkingProfile(params.modelId);
}