Skip to main content
Hermes Agent is an AI agent for local terminal workflows. You can use it as a daily development assistant, or combine skills, MCP, scheduled tasks, and subagents for longer automation work. When connecting LLMEasy, use a GPT Key group API Key and call models through the OpenAI-compatible endpoint.
This page only covers the GPT Key group setup for Hermes Agent. Copy model IDs from the model plaza.

Prerequisites

  • LLMEasy API Key (register here)
  • The API Key belongs to the GPT Key group
  • A GPT Key group model ID copied from the model plaza
  • macOS, Linux, or Windows WSL2

Install Hermes Agent

curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash

Setup

1

Run the model selector

hermes model
2

Choose the OpenAI or OpenAI Compatible provider

Select OpenAI or OpenAI Compatible from the provider list.
3

Fill in the LLMEasy config

Enter:
  • Base URL: https://www.llmeasy.ru/v1
  • API Key: your LLMEasy API Key
  • Model: a GPT Key group model ID copied from the model plaza
4

Restart Hermes Agent

After updating the config, quit the current Hermes Agent session and start it again.
5

Start Hermes Agent

hermes

Feature quick reference

FeatureWhat it is for
Terminal UIChat with the agent directly in your terminal
SkillsSave reusable workflows for repeated tasks
MCPConnect local or remote tool capabilities
Scheduled tasksRun timed jobs and recurring workflows
SubagentsSplit complex work across focused agents
Message gatewayConnect the agent to more message entry points

Migrate from OpenClaw

If you already use OpenClaw, first check whether your current Hermes Agent version provides the migration command. Run a dry run before changing anything.
hermes claw migrate --dry-run
After you confirm the output, run the migration:
hermes claw migrate
After migration, still review the Hermes Agent Base URL, API Key, and model ID. They should match https://www.llmeasy.ru/v1, your LLMEasy API Key, and a GPT Key group model ID.

Troubleshooting

  • If requests fail or return no response, confirm that Base URL is exactly https://www.llmeasy.ru/v1. Do not append /chat/completions in this field.
  • If Hermes reports that the model does not exist, confirm that Model is a GPT Key group model ID from the model plaza.
  • If authentication fails, check for copied spaces and confirm that the API Key belongs to the GPT Key group.
  • If Hermes still uses the old model after a change, quit the current Hermes Agent session and run hermes again.
  • LLMEasy usually does not require an extra User-Agent or custom headers. Only add headers when your custom gateway, tenant routing, observability, or caching layer explicitly requires them.
Do not commit real API Keys to your repository. For team-shared setup, prefer environment variables or local config.