profundo.ai

SETUP GUIDE

Hermes Agent

Configure Profundo through Hermes Agent's custom endpoint flow.

Status: Supported for Chat Completions

1. Recommended setup

After signup, verification, and membership activation, issue a key in the dashboard. It is displayed once; keep it in a local secret store.

Base URL: https://api.profundoai.com/v1
API key: PROFUNDO_API_KEY
Model: glm-5.2 (or minimax-m3 / nemotron-ultra)
  1. Run `hermes model`.
  2. Select `Custom endpoint (self-hosted / VLLM / etc.)`.
  3. Enter the base URL, API key, and model shown above.

Optional alternatives

Use an existing endpoint from the desktop dashboard

Models -> Change can select an already configured custom endpoint for new sessions. Official documentation establishes endpoint creation through `hermes model`, not this dashboard.

Advanced: keep the secret in ~/.hermes/.env

Use a named custom provider when you want the key separate from configuration.

# ~/.hermes/.env
PROFUNDO_API_KEY=your_key

# ~/.hermes/config.yaml
custom_providers:
  - name: profundo
    base_url: https://api.profundoai.com/v1
    key_env: PROFUNDO_API_KEY
    api_mode: chat_completions
model:
  provider: profundo
  default: glm-5.2

2. Verify your key

Set PROFUNDO_API_KEY in your shell, then run:

curl https://api.profundoai.com/v1/chat/completions \
  -H "Authorization: Bearer $PROFUNDO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"minimax-m3","messages":[{"role":"user","content":"Say hello"}]}'

Use glm-5.2, minimax-m3, or nemotron-ultra with https://api.profundoai.com/v1.

Official documentation