> ## Documentation Index
> Fetch the complete documentation index at: https://docs.infercom.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Continue Integration Guide

> Configure Continue for VS Code and JetBrains with Infercom's EU sovereign inference. Open-source AI coding assistant with chat and inline editing.

[Continue](https://continue.dev) is an open-source AI coding assistant that integrates with VS Code and JetBrains IDEs. It provides chat, inline editing, and custom shortcuts.

<Info>
  **Setup time:** \~3 minutes
</Info>

## Prerequisites

* [VS Code](https://code.visualstudio.com/) or JetBrains IDE
* [Continue extension](https://docs.continue.dev/getting-started/install) installed
* [Infercom API key](https://cloud.infercom.ai/apis)

## Configuration

### Step 1: Open Configuration

1. Click the Continue icon in your IDE sidebar
2. Click the **gear icon** to open `config.json`

### Step 2: Add Infercom Provider

Update your `config.json` to include Infercom:

```json theme={null}
{
  "models": [
    {
      "model": "MiniMax-M2.7",
      "provider": "openai",
      "apiKey": "your-infercom-api-key",
      "apiBase": "https://api.infercom.ai/v1",
      "title": "MiniMax-M2.7 (EU Sovereign)"
    }
  ]
}
```

### Step 3: Save and Reload

1. Save the `config.json` file
2. The model should appear in Continue's model selector

## With Tab Autocomplete

To also use MiniMax-M2.7 for tab completion:

```json theme={null}
{
  "models": [
    {
      "model": "MiniMax-M2.7",
      "provider": "openai",
      "apiKey": "your-infercom-api-key",
      "apiBase": "https://api.infercom.ai/v1",
      "title": "MiniMax-M2.7 (EU Sovereign)"
    }
  ],
  "tabAutocompleteModel": {
    "model": "MiniMax-M2.7",
    "provider": "openai",
    "apiKey": "your-infercom-api-key",
    "apiBase": "https://api.infercom.ai/v1"
  }
}
```

## Model

Use `MiniMax-M2.7` - optimized for agentic coding with 192K context window.

## Usage

### Chat

Press `Cmd+L` / `Ctrl+L` to open the chat panel and ask questions about your code.

### Inline Edit

1. Select code in your editor
2. Press `Cmd+I` / `Ctrl+I`
3. Describe the changes you want

### Tab Autocomplete

If configured in `tabAutocompleteModel`, Continue provides inline completions as you type.

## Continue Hub

Continue Hub offers pre-built configurations. While Infercom isn't listed directly, you can use the OpenAI-compatible setup above with any Continue Hub assistant.

## Troubleshooting

### Model Not Appearing

1. Verify `config.json` syntax is valid JSON
2. Check the model name is exact: `MiniMax-M2.7`
3. Reload your IDE window

### Authentication Errors

Verify your API key:

```bash theme={null}
curl -s https://api.infercom.ai/v1/models \
  -H "Authorization: Bearer your-infercom-api-key"
```

### Config File Location

| OS      | Path                                  |
| ------- | ------------------------------------- |
| macOS   | `~/.continue/config.json`             |
| Linux   | `~/.continue/config.json`             |
| Windows | `%USERPROFILE%\.continue\config.json` |

## Next Steps

* [Cline](/en/agentic-coding/cline) - Autonomous VS Code agent
* [Cursor](/en/agentic-coding/cursor) - Full AI-native IDE
* [Choosing a Tool](/en/agentic-coding/choosing-a-tool) - Compare all options
