INTEGRATIONS · CODING AGENTS & APPS

VS Code

Connect VS Code to Hoonify with the open-source Continueextension. It accepts any OpenAI-compatible endpoint, so you point it at Hoonify's /v1 endpoint and your models show up in chat, edit, and apply.

Get an API key

You need a key first. Create one on the Subscriptions page — keys are revealed once at creation, so copy it before closing the dialog.
  1. Install the Continue extension from the VS Code Marketplace.
  2. Open the Continue config (~/.continue/config.yaml) and add Hoonify as an OpenAI-compatible model, as below. Replace <YOUR_HOONIFY_KEY> with your key (hooni_…).
  3. Reload the window and pick DeepSeek V4 Pro (Hoonify) from the Continue model selector.
~/.continue/config.yaml
name: Hoonify Config
version: 1.0.0
schema: v1
models:
  - name: DeepSeek V4 Pro (Hoonify)
    provider: openai
    model: deepseek-ai/DeepSeek-V4-Pro
    apiBase: https://api.hoonify.ai/v1
    apiKey: <YOUR_HOONIFY_KEY>
    roles:
      - chat
      - edit
      - apply
    capabilities:
      - tool_use

Notes

Keep the /v1 suffix on apiBase, and use the namespaced, case-sensitive model id (deepseek-ai/DeepSeek-V4-Pro). To add more models, copy the block and change name + model — see the full model list.

Related: OpenAI compatibility · Models