@echo off echo Opening NeuroGPT endpoint... echo Checking for updates... REM Создаем временную копию файла config.json copy /Y config.json config_temp.json git checkout main git fetch --all git reset --hard origin/main git pull REM Восстанавливаем оригинальный файл config.json copy /Y config_temp.json config.json del config_temp.json REM Checking for Python version python -c "import sys; print('.'.join(map(str, sys.version_info[:3])))" > version.txt set /p version=