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.
hermes model- Select Custom endpoint (self-hosted / VLLM / etc.).
- Enter https://code.verboo.ai/router/v1 as the base URL.
- Paste your Verboo API key when prompted.
- Choose an ID returned by GET /models.
- 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.
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.
hermes doctor