@echo off chcp 65001 >nul 2>&1 title U-Claw - Local / Intranet Model Setup setlocal for %%I in ("%~dp0..") do set "UCLAW_DIR=%%~fI\" set "NODE_BIN=%UCLAW_DIR%app\runtime\node-win-x64\node.exe" set "CONFIG_PATH=%UCLAW_DIR%data\.openclaw\openclaw.json" if not exist "%NODE_BIN%" ( echo [ERROR] Node runtime not found. echo Put this file inside your U-Claw folder, next to the START HERE files, then run again. echo. pause exit /b 1 ) "%NODE_BIN%" "%UCLAW_DIR%lib\setup-local-model.mjs" "%CONFIG_PATH%" echo. pause