Skip to main content
Configure WorkBuddy to call the Modellix LLM gateway. WorkBuddy supports OpenAI-compatible custom models in the UI and in ~/.workbuddy/models.json, pointed at Chat Completions on POST /v1/chat/completions.
This page covers LLM text only (https://llm.modellix.ai).Modellix model IDs are provider/name (for example openai/gpt-5.5). Enter that full string as the Model Name / id. Set Endpoint / url to https://llm.modellix.ai/v1 (include /v1). With Custom Protocol off (default), WorkBuddy uses the standard /chat/completions path. See Models & Pricing.

Set Up WorkBuddy

1

Get a Modellix API Key

Create a Modellix API key in the console and store it securely. You will paste it into the WorkBuddy custom model form or models.json.
2

Add a Custom Model in the UI

In WorkBuddy, open the model picker (for example Auto near the input box), scroll to the bottom, and choose Configure custom models → Add Model.You can also open Settings → Model (or Settings → Models) and add a custom model there.Set Provider to Custom, then fill in:Save the model. Include /v1 in the Endpoint.
If your gateway requires a non-standard path, enable Custom Protocol and set Endpoint to the exact URL WorkBuddy should call (for example the full https://llm.modellix.ai/v1/chat/completions). For Modellix, leaving Custom Protocol off with Endpoint https://llm.modellix.ai/v1 is the usual setup.
3

Persist with models.json

WorkBuddy stores custom models in a local JSON array (not the CodeBuddy { "models": [...] } object shape):
  • macOS / Linux: ~/.workbuddy/models.json
  • Windows: %USERPROFILE%\.workbuddy\models.json
Example:
Replace mdlx-xxxxxxxx with your Modellix API key. Append additional objects to the array for more Modellix IDs (for example anthropic/claude-sonnet-5, google/gemini-3.6-flash).
Do not use a built-in vendor that points at OpenAI or Anthropic directly. Choose Custom / vendor: "Custom" so traffic goes to Modellix. Do not set url to the media API host (https://api.modellix.ai).
After saving, restart WorkBuddy or reopen the model picker so the list refreshes. Full catalog: Models & Pricing.
4

Select and Start

Open the model picker, choose your model under Custom Models, and send a short test message to confirm the gateway responds.

Troubleshooting