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

# Continue integration guide

Continue is an open-source coding assistant platform that integrates with your IDE, allowing you to:

* Interact with a Large Language Model (LLM) directly within your development environment.
* Edit code without leaving your current working file.
* Build and customize shortcuts for increased productivity.

You can leverage a variety of models on the SambaCloud to enhance your coding experience.

## Install Continue in your IDE

Continue supports Visual Studio Code and JetBrains IDEs. Follow these steps to set it up:

1. [Install Continue](https://docs.continue.dev/ide-extensions/install): To install Continue, add the extension/plugin to your preferred IDE.
2. Open the configuration: Select the gear icon in Continue to access `config.yaml`.
3. Sign up for [SambaCloud](https://cloud.sambanova.ai), create an account, and get your [free API key](https://cloud.sambanova.ai/apis).

## Add the model to your configuration file

Update your `config.yaml` file to include a SambaNova model:

```yaml theme={null}
name: Sambanova Assistant
version: 1.0.0
schema: v1
models:
  - name: MiniMax-M2.7
    provider: sambanova
    model: MiniMax-M2.7
    apiKey: <your-api-key>
```

1. Replace `<your-api-key>` with your SambaNova API key.
2. Save the file to apply the changes.
3. Select `Cmd/Ctrl+L` to open Continue and ask your first question.

## Autocomplete support

The following SambaNova models support the autocomplete role in Continue:

| Model         | Model ID        |
| :------------ | :-------------- |
| DeepSeek-V3.1 | `DeepSeek-V3.1` |
| MiniMax-M2.7  | `MiniMax-M2.7`  |

To enable autocomplete, add the `roles` field to your model configuration:

```yaml theme={null}
models:
  - name: MiniMax-M2.7
    provider: sambanova
    model: MiniMax-M2.7
    apiKey: <your-api-key>
    roles:
      - autocomplete
```

## Continue hub

[Continue Hub](https://hub.continue.dev/explore/models) is a platform for creating custom AI code assistants. You can combine blocks for models, rules, context providers, prompts, docs, data destinations, and MCP servers. Access SambaNova models as pre-built blocks and assistants on the [SambaNova Hub page](https://hub.continue.dev/sambanova).
