first commit

This commit is contained in:
DigiJ
2026-03-13 12:56:43 -07:00
commit 159cf9fcfe
309 changed files with 64584 additions and 0 deletions

23
launch_remote_control.bat Normal file
View File

@@ -0,0 +1,23 @@
@echo off
:: Launch LLM_Train Remote Control Application
echo Starting LLM_Train Remote Control...
echo.
:: Check if Python is available
python --version >nul 2>&1
if %errorlevel% neq 0 (
echo Error: Python is not installed or not in PATH.
echo Please install Python from https://python.org/downloads/
pause
exit /b 1
)
:: Launch the remote control application
python remotecontrol.py
if %errorlevel% neq 0 (
echo.
echo Application exited with error code %errorlevel%
pause
)