verboo code

Integrations

Use Verboo Code in OpenClaw

Add Verboo Code as an OpenAI-compatible provider and choose the model available to your plan.

On this page

Choose a model

The model list is specific to your API key. Check it before creating the configuration and replace <MODEL_ID> with a returned ID.

List models
curl https://code.verboo.ai/router/v1/models \
  -H "Authorization: Bearer <VERBOO_API_KEY>"

Fill in model capabilities

Copy context_window into contextWindow. Set reasoning: true only when the reasoning object exists. Keep image in input only when vision is true; otherwise use ["text"].

Add the provider

Add this block to your OpenClaw configuration file. Preserve existing providers when merging it.

openclaw.json
{
  "models": {
    "mode": "merge",
    "providers": {
      "verboo": {
        "baseUrl": "https://code.verboo.ai/router/v1",
        "api": "openai-completions",
        "apiKey": "<VERBOO_API_KEY>",
        "models": [
          {
            "id": "<MODEL_ID>",
            "name": "Verboo Code",
            "contextWindow": <CONTEXT_WINDOW>,
            "reasoning": <REASONING_ENABLED>,
            "input": ["text", "image"]
          }
        ]
      }
    }
  }
}

Do not version your key

The example uses a placeholder. In shared environments, prefer OpenClaw secrets or environment variable support.

Select and use

After saving, select the model from the Verboo provider in OpenClaw. Restart the Gateway if your version does not reload the configuration automatically.

Select the model
openclaw models set verboo/<MODEL_ID>

You can now start a conversation normally. OpenClaw sends Chat Completions to the Verboo Code Router.