mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 04:50:44 +00:00
Add a Fireworks-owned thinking policy for Kimi models so K2.5/K2.6 only expose `off`, keep the bundled provider-policy artifact aligned, and keep request payloads on Fireworks-accepted `thinking: disabled` while stripping rejected `reasoning*` fields. Refs #74289.
9 lines
279 B
TypeScript
9 lines
279 B
TypeScript
import { resolveFireworksThinkingProfile } from "./thinking-policy.js";
|
|
|
|
export function resolveThinkingProfile(params: {
|
|
provider?: string;
|
|
modelId: string;
|
|
}): ReturnType<typeof resolveFireworksThinkingProfile> {
|
|
return resolveFireworksThinkingProfile(params.modelId);
|
|
}
|