19 lines
518 B
Batchfile
19 lines
518 B
Batchfile
@echo off
|
|
chcp 65001 >nul
|
|
cd /d "%~dp0"
|
|
echo =====================================================
|
|
echo 🤖 Hermes Discord Assistant Gateway
|
|
echo =====================================================
|
|
echo [INFO] Starting Discord Bot...
|
|
echo.
|
|
|
|
set "PYTHONIOENCODING=utf-8"
|
|
set "PYTHONUTF8=1"
|
|
set "PY_EXE=C:\ProgramData\miniforge3\envs\variet-llm\python.exe"
|
|
"%PY_EXE%" agents\hermes-agent\gateway\run.py
|
|
|
|
echo.
|
|
echo =====================================================
|
|
echo [INFO] Hermes Agent Disconnected.
|
|
pause
|