메인 콘텐츠로 건너뛰기
Nous Research의 터미널 AI 에이전트(명령 hermes). 사이트: https://hermes-agent.nousresearch.com (저장소: https://github.com/NousResearch/hermes-agent). Linux / macOS / WSL2에서 지원됩니다. Windows는 네이티브로 지원되지 않습니다 — WSL2 안에 설치하세요.
프로토콜: OpenAI 호환 (Chat Completions)
  • Base URL: https://api.orcarouter.ai/v1 (/v1이 반드시 포함되어야 합니다)

설치

Linux / macOS / WSL2에서:
curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash
source ~/.bashrc   # or ~/.zshrc
Windows에서는 Hermes가 네이티브로 지원되지 않습니다 — WSL2(Ubuntu) 셸을 열고 그 안에서 위와 동일한 명령을 실행하세요.

구성

~/.hermes/config.yaml을 편집하세요:
model:
  api_mode: chat_completions
  base_url: https://api.orcarouter.ai/v1
  default: orcarouter/auto
  provider: custom

실행

Hermes는 대화형입니다. 실행한 다음 모델이 응답하는지 확인하세요:
hermes          # or: hermes --tui
세션 안에서 /model로 모델을 전환하세요. 먼저 hermes model을 실행하여 대화형 메뉴를 통해 Custom Endpoint를 구성할 수도 있습니다.

참고 사항

  • base URL은 후행 /v1을 유지합니다.
  • api_mode: chat_completions를 사용하세요 — OrcaRouter는 Responses API가 아니라 Chat Completions를 사용합니다.
  • default: orcarouter/auto는 자동 라우팅을 사용하고, provider: custom은 custom endpoint를 선택합니다.
  • 모델 이름은 vendor/model 형식을 사용합니다. orcarouter/autoanthropic/claude-opus-4.8 또는 google/gemini-2.5-flash 같은 특정 모델로 바꾸세요.
  • Windows에서는 Hermes를 WSL2 안에서 실행해야 합니다.