Skip to main content
feedback
feedback

Continue

Continue is the leading open-source AI code assistant. You can connect any model and any context, and build custom autocomplete and chat experiences in VS Code and JetBrains.

Configuration Guide​

After installing the Continue extension in VS Code or JetBrains, configure it as follows.

MoArk Serverless API provides an OpenAI-compatible endpoint. The sample below uses the DeepSeek model—replace it with any other model you need.

# config.json

{
"completionOptions": {
"BaseCompletionOptions": {
"temperature": 0.0,
"maxTokens": 256
}
},
"models": [
{
"title": "DeepSeek-33b",
"model": "deepseek-33b",
"apiKey": "#{APIKEY}",
"apiBase": "https://api.moark.ai/v1/",
"provider": "openai"
}
],
"tabAutocompleteModel": {
"title": "DeepSeek-33b",
"model": "deepseek-33b",
"apiKey": "#{APIKEY}",
"apiBase": "https://api.moark.ai/v1/",
"provider": "openai"
},
...