mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2024-12-13 00:56:18 +01:00
136dd71171
First step towards native Colab support, built in Cloudflare tunnels easily allows players to play KoboldAI on another device. This mode also removes buttons that would get you stuck if you have no local PC access.
18 lines
302 B
Batchfile
18 lines
302 B
Batchfile
@echo off
|
|
cd %~dp0
|
|
TITLE KoboldAI - Client
|
|
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 |