feat(phase-06): complete Hermes Agent windows fixes & deployment

This commit is contained in:
Variet-Worker
2026-04-08 23:04:20 +09:00
parent be6a6bf8f7
commit 96c91cb57a
12 changed files with 325 additions and 13 deletions

24
run_hermes_agent.bat Normal file
View File

@@ -0,0 +1,24 @@
@echo off
chcp 65001 >nul
cd /d "%~dp0"
echo =====================================================
echo [ Hermes Agent Gateway ]
echo =====================================================
echo [INFO] Starting Hermes Agent...
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
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