File size: 1,642 Bytes
870ab6b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
@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=<version.txt
IF "%version%" LSS "3.10.0" (
echo Your version of Python %version% is not supported. Please install Python 3.10
pause
)
IF "%version%" GEQ "3.10.14" (
echo Your version of Python %version% is not supported. Please install Python 3.10
pause
)
python -m venv venv
call venv\Scripts\activate.bat
python -m pip install --upgrade pip
python -m pip install -U setuptools
python -m pip install whl\fastwsgi-0.0.9-cp310-cp310-win_amd64.whl
python -m pip install -r requirements.txt
REM checking for spacy language models and download if not exists
IF NOT EXIST venv\Lib\site-packages\en_core_web_sm (
echo English language model not found, downloading...
python -m spacy download en_core_web_sm
)
IF NOT EXIST venv\Lib\site-packages\zh_core_web_sm (
echo Chinese language model not found, downloading...
python -m spacy download zh_core_web_sm
)
IF NOT EXIST venv\Lib\site-packages\ru_core_news_sm (
echo Russian language model not found, downloading...
python -m spacy download ru_core_news_sm
)
echo Completed.
echo Running NeuroGPT...
python endpoint.py
pause |