verboo code

Integrations

Use Verboo Code in Hermes

Hermes accepts OpenAI-compatible endpoints. Configure Verboo Code through the wizard or directly in its configuration file.

On this page

Setup wizard

The recommended way to add an endpoint is through the Hermes terminal wizard.

Open the wizard
hermes model
  1. Select Custom endpoint (self-hosted / VLLM / etc.).
  2. Enter https://code.verboo.ai/router/v1 as the base URL.
  3. Paste your Verboo API key when prompted.
  4. Choose an ID returned by GET /models.
  5. Use the returned context_window as context_length and enable vision only when vision is true.

Manual configuration

Alternatively, edit ~/.hermes/config.yaml and define the model, provider, base URL, and API key.

~/.hermes/config.yaml
model:
  default: <MODEL_ID>
  provider: custom
  base_url: https://code.verboo.ai/router/v1
  api_mode: chat_completions
  api_key: <VERBOO_API_KEY>
  context_length: <CONTEXT_WINDOW>
  supports_vision: <VISION_ENABLED>

Keep the key private

If your workflow uses shared files, inject the credential through Hermes secrets rather than saving it as plain text.

Model capabilities

Replace placeholders with data from the models page. supports_vision must be false for models without vision. When reasoning is available, use only effort levels returned by the Router.

Verify

Run Hermes diagnostics after saving. It reports unknown providers, missing credentials, and configuration problems.

Run diagnostics
hermes doctor