mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-23 19:08:22 -06: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);
|
|
}
|