Change to manually download default models instead of auto

This commit is contained in:
litagin02
2024-06-02 15:31:55 +09:00
parent e11e3efce9
commit ab158d1a7b
6 changed files with 22 additions and 11 deletions

11
Initialize.bat Normal file
View File

@@ -0,0 +1,11 @@
chcp 65001 > NUL
@echo off
pushd %~dp0
echo Running initialize.py...
venv\Scripts\python initialize.py
if %errorlevel% neq 0 ( pause & popd & exit /b %errorlevel% )
popd
pause