mirror of
https://github.com/SillyTavern/SillyTavern-Launcher.git
synced 2026-01-26 17:09:44 +00:00
25 lines
810 B
Batchfile
25 lines
810 B
Batchfile
@echo off
|
|
|
|
:start_koboldcpp
|
|
REM Check if dev-koboldcpp directory exists
|
|
if not exist "%koboldcpp_install_path%" (
|
|
echo %red_bg%[%time%]%reset% %red_fg_strong%[ERROR] dev-koboldcpp directory not found in: %text_completion_dir%%reset%
|
|
pause
|
|
goto :home
|
|
)
|
|
|
|
cd /d "%koboldcpp_install_path%"
|
|
|
|
REM Check if koboldcpp file exists [koboldcpp NVIDIA]
|
|
if exist "%koboldcpp_install_path%\koboldcpp.exe" (
|
|
echo %blue_bg%[%time%]%reset% %blue_fg_strong%[INFO]%reset% koboldcpp launched in a new window.
|
|
start "" "koboldcpp.exe"
|
|
goto :home
|
|
)
|
|
|
|
REM Check if koboldcpp file exists [koboldcpp AMD]
|
|
if exist "%koboldcpp_install_path%\koboldcpp_rocm.exe" (
|
|
echo %blue_bg%[%time%]%reset% %blue_fg_strong%[INFO]%reset% koboldcpp launched in a new window.
|
|
start "" "koboldcpp_rocm.exe"
|
|
goto :home
|
|
) |