mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-16 14:11:37 +00:00
7 lines
285 B
TypeScript
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);
|
|
}
|