Infux
Back to Home
Continue

Integration Guide

Using Infux with Continue

Step-by-step setup for using Infux with Continue

Prerequisites

  • VS Code or JetBrains IDE with Continue extension installed
  • An Infux API key

Setup (config.yaml)

  1. Open Continue config: Cmd+Shift+P → "Continue: Open Config"
  2. This opens ~/.continue/config.yaml
  3. Add Infux as a model provider:
~/.continue/config.yaml
models:
  - name: DeepSeek V3 (Infux)
    provider: openai
    model: deepseek-v3-0324
    apiBase: https://api.infux.dev/v1
    apiKey: sk-infux-your_key_here

  - name: Kimi K2.5 (Infux)
    provider: openai
    model: kimi-k2.5
    apiBase: https://api.infux.dev/v1
    apiKey: sk-infux-your_key_here

  - name: DeepSeek R1 (Infux)
    provider: openai
    model: deepseek-r1
    apiBase: https://api.infux.dev/v1
    apiKey: sk-infux-your_key_here

tabAutocompleteModel:
  name: GLM-4.7 Flash (Infux)
  provider: openai
  model: glm-4.7-flash
  apiBase: https://api.infux.dev/v1
  apiKey: sk-infux-your_key_here

Alternative: config.json

If you prefer JSON (still supported):

~/.continue/config.json
{
  "models": [
    {
      "title": "DeepSeek V3 (Infux)",
      "provider": "openai",
      "model": "deepseek-v3-0324",
      "apiBase": "https://api.infux.dev/v1",
      "apiKey": "sk-infux-your_key_here"
    }
  ],
  "tabAutocompleteModel": {
    "title": "GLM-4.7 Flash (Infux)",
    "provider": "openai",
    "model": "glm-4.7-flash",
    "apiBase": "https://api.infux.dev/v1",
    "apiKey": "sk-infux-your_key_here"
  }
}

Feature Mapping

Use CaseModelWhy
Chatdeepseek-v3-0324Fast, great at explaining code
Editkimi-k2.5Strong at multi-file edits
Tab Autocompleteglm-4.7-flashLowest latency, 200K context
Agent modekimi-k2.5-thinkingBest reasoning for complex tasks

Verify

  1. Open any project in VS Code
  2. Press Cmd+L to open Continue chat
  3. Select "DeepSeek V3 (Infux)" from the model dropdown
  4. Ask: "What does this project do?"
  5. You should see a streaming response

Troubleshooting

Model not found in provider

Ensure provider is set to "openai" (not "openai-compatible"). Continue's openai provider works with any OpenAI-compatible API.

Tab autocomplete not working

Verify the tabAutocompleteModel section is present. Check Continue logs: Cmd+Shift+P → "Continue: View Logs".