mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2024-12-12 16:47:28 +01:00
b264823fed
Improved the default settings, better distinction on client / server. The python parts have been renamed to server, the browser to the client to be conform what you'd expect from a client and a server. The model name will also be shown now instead of NeoCustom.
18 lines
302 B
Batchfile
18 lines
302 B
Batchfile
@echo off
|
|
cd %~dp0
|
|
TITLE KoboldAI - Server
|
|
SET /P M=<loader.settings
|
|
IF %M%==1 GOTO drivemap
|
|
IF %M%==2 GOTO subfolder
|
|
|
|
:subfolder
|
|
call miniconda3\condabin\activate
|
|
python aiserver.py %*
|
|
cmd /k
|
|
|
|
:drivemap
|
|
subst K: miniconda3 >nul
|
|
call K:\python\condabin\activate
|
|
python aiserver.py %*
|
|
subst K: /D
|
|
cmd /k |