Files
openclaw/extensions/xai/provider-policy-api.ts
2026-05-06 05:33:38 +01:00

6 lines
211 B
TypeScript

import type { ProviderThinkingProfile } from "openclaw/plugin-sdk/plugin-entry";
export function resolveThinkingProfile(): ProviderThinkingProfile {
return { levels: [{ id: "off" }], defaultLevel: "off" };
}