Welcome! Let's connect your backend
Hermes Workspace works with any OpenAI-compatible backend. Hermes gateway APIs unlock enhanced features automatically when they are available.
Set HERMES_API_URL to your backend base URLPortable chat works with any backend that exposes /v1/chat/completions (Ollama, LiteLLM, vLLM, etc.)
git clone https://github.com/outsourc-e/hermes-agent.gitHermes gateway APIs unlock sessions, skills, memory, and other workspace extras automatically
cd hermes-agent && python3 -m venv .venv && source .venv/bin/activate && pip3 install -e .echo "API_SERVER_ENABLED=true" >> ~/.hermes/.envThe gateway HTTP API is opt-in. Without this, the gateway serves messaging platforms but does not expose port 8642 for the workspace.
cd hermes-agent && source .venv/bin/activate && hermes --gatewayOr use Auto-Start below if hermes-agent is already installed locally
Point HERMES_API_URL at any OpenAI-compatible backend:
HERMES_API_URL=http://your-server:8642 pnpm dev
This page auto-refreshes when a compatible backend is detected