text-generation-webui/start-webui.bat

12 lines
310 B
Batchfile
Raw Normal View History

2023-03-12 20:42:50 +01:00
@echo off
@echo Starting the web UI...
set INSTALL_ENV_DIR=%cd%\installer_files\env
set PATH=%INSTALL_ENV_DIR%;%INSTALL_ENV_DIR%\Library\bin;%INSTALL_ENV_DIR%\Scripts;%INSTALL_ENV_DIR%\Library\usr\bin;%PATH%
call conda activate
cd text-generation-webui
call python server.py --auto-devices --cai-chat
pause