Hermes Agent Manual Configuration Guide

1. Obtain API Key

Open the Lingxi AI Plaza application list, enter the available applications, and copy the API Key.

Get Lingxi AI Plaza API Key

2. Save Key

Write in ~/.hermes/.env:

ACEDATACLOUD_API_KEY=your API Key

3. Configure Provider

Add to ~/.hermes/config.yaml:

providers:
  acedatacloud:
    api: https://api.acedata.cloud/v1
    key_env: ACEDATACLOUD_API_KEY
    transport: chat_completions
    default_model: MODEL_ID

model:
  provider: custom:acedatacloud
  default: MODEL_ID

Replace the two instances of MODEL_ID with the same model ID currently provided by Coding Plan. Do not write the real Key in YAML or submit .env.

4. Verification

hermes config check
hermes -z "Reply only OK" --provider custom:acedatacloud --model MODEL_ID --ignore-rules

If it returns 401, check ~/.hermes/.env; if the configuration is not effective, completely exit and restart Hermes.

Official Reference