mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-02 19:50:21 +00:00
6 lines
265 B
TypeScript
6 lines
265 B
TypeScript
const MOONSHOT_THINKING_PAYLOAD_COMPAT_PROVIDERS = new Set(["moonshot", "kimi"]);
|
|
|
|
export function usesMoonshotThinkingPayloadCompatStatic(provider?: string | null): boolean {
|
|
return provider != null && MOONSHOT_THINKING_PAYLOAD_COMPAT_PROVIDERS.has(provider);
|
|
}
|