Hermes Agent Manual Configuration Guide
If you are familiar with YAML, you can directly maintain the named provider configuration for Hermes. The main configuration is located at ~/.hermes/config.yaml, and the Token is placed in ~/.hermes/.env.
¶ 1. Save Token
ACEDATACLOUD_API_KEY=PASTE_YOUR_ACEDATACLOUD_API_TOKEN_HERE
¶ 2. Configure Provider
providers:
acedatacloud:
type: openai
base_url: https://api.acedata.cloud/v1
key_env: ACEDATACLOUD_API_KEY
default_model: MODEL_ID
model:
provider: acedatacloud
default: MODEL_ID
Replace the two MODEL_ID with the same model ID selected in the Coding configuration wizard. Do not write the real Token directly into YAML or submit the .env.
¶ 3. Verification
hermes --version
hermes chat --model MODEL_ID "Reply only OK"
If Hermes is still using the old configuration, please ensure the files belong to the same user who started Hermes, and completely exit and restart. Custom base_url will directly use that compatible endpoint and will not inherit the configuration of other Providers.
¶ Official Reference
Return to Coding Plan Configuration Center.
