Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 16 additions & 21 deletions docs/ide-extensions/chat/model-setup.mdx
Original file line number Diff line number Diff line change
@@ -1,21 +1,16 @@
---
title: "Recommended Models for Chat in Continue"
description: "Choose the best chat model for Continue, including hosted high-performance options, fast speed/quality tradeoffs, and local privacy-first models."
sidebarTitle: "Recommended Chat Models"
---
import { ModelRecommendations } from '/snippets/ModelRecommendations.jsx';

The model you use for Chat mode will be:

- used with Edit mode by default but can be switched
- always used with Agent mode if the model supports tool calling

## Model Recommendations

<ModelRecommendations role="chat_edit" />

<Info>
For a comprehensive comparison of all available models by role, see our [model recommendations table](/customize/models#recommended-models).
</Info>

For model recommendations, please refer to our [Model Recommendations page](/customize/models).
{
Copy link
Contributor

@cubic-dev-ai cubic-dev-ai bot Dec 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P0: This .mdx documentation file has been replaced with raw JSON content, which is incorrect. MDX files should contain Markdown + JSX documentation content, not JSON configuration. This will completely break the documentation page.

If this is meant to be a configuration example, it should be wrapped in a proper MDX structure with frontmatter and code blocks. If this is meant to be a config file, it should have a .json extension.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At docs/ide-extensions/chat/model-setup.mdx, line 2:

<comment>This `.mdx` documentation file has been replaced with raw JSON content, which is incorrect. MDX files should contain Markdown + JSX documentation content, not JSON configuration. This will completely break the documentation page.

If this is meant to be a configuration example, it should be wrapped in a proper MDX structure with frontmatter and code blocks. If this is meant to be a config file, it should have a `.json` extension.</comment>

<file context>
@@ -1,21 +1,16 @@
-For model recommendations, please refer to our [Model Recommendations page](/customize/models).
\ No newline at end of file
+{
+  &quot;models&quot;: [
+    {
+      &quot;title&quot;: &quot;DeepSeek V3&quot;,
</file context>
Fix with Cubic

"models": [
{
"title": "DeepSeek V3",
"provider": "deepseek",
"model": "deepseek-chat",
"apiKey": "ВАШ_КЛЮЧ_ИЗ_ШАГА_1"
}
],
"tabAutocompleteModel": {
"title": "DeepSeek Coder",
"provider": "deepseek",
"model": "deepseek-coder",
"apiKey": "ВАШ_КЛЮЧ_ИЗ_ШАГА_1"
}
}
Loading