/** * Cross-platform environment helpers for local LLM provider. * * Uses the platform compat layer so all local-AI checks go through * a single function — no duplicated env access patterns. * * @module provider/local */ export type LocalAIDevice = "cpu" | "webgpu"; /** * Check whether local AI is explicitly disabled via environment variable. * Works in Deno, Node, and compiled binaries. */ export declare function isLocalAIDisabled(): boolean; export declare function createLocalAIDisabledError(): Error; export declare function throwIfLocalAIDisabled(): void; export declare function getLocalAIDevice(): LocalAIDevice; export declare function getLocalAIThinkingEnabled(): boolean; //# sourceMappingURL=env.d.ts.map