/** * OpenClaw Addon Scanfixes * * Automates the full chain for running OpenClaw (autonomous AI agent) * inside a Tart VM with a local LLM via Ollama: * * 1. Install Tart on the host Mac * 2. Ensure a Tart VM exists and is running * 3. SSH into the VM to install Ollama * 4. Pull a compatible model (must support tool calling) * 5. Install OpenClaw inside the VM * 6. Configure OpenClaw to use the local Ollama model * * OpenClaw and Ollama run INSIDE the Tart VM, not on the host. * The host only needs Tart installed. */ import type { Fix } from '../../../../types/index.js'; export declare const openclawFixes: Fix[]; //# sourceMappingURL=setup.d.ts.map