mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 19:31:00 +00:00
6 lines
211 B
TypeScript
6 lines
211 B
TypeScript
import type { ProviderThinkingProfile } from "openclaw/plugin-sdk/plugin-entry";
|
|
|
|
export function resolveThinkingProfile(): ProviderThinkingProfile {
|
|
return { levels: [{ id: "off" }], defaultLevel: "off" };
|
|
}
|