fix: fix continue docs's config example

This commit is contained in:
TOKISAKIX\21168 2024-12-31 23:57:00 +08:00
parent b9167f843d
commit c727313524
2 changed files with 7 additions and 3 deletions

View File

@ -27,14 +27,16 @@ Continue will generate, refactor, and explain entire sections of code with LLMs.
"model": "deepseek-chat", "model": "deepseek-chat",
"contextLength": 128000, "contextLength": 128000,
"apiKey": "REDACTED", "apiKey": "REDACTED",
"provider": "deepseek" "provider": "deepseek",
"apiBase": "https://api.deepseek.com/beta"
} }
], ],
"tabAutocompleteModel": { "tabAutocompleteModel": {
"title": "DeepSeek", "title": "DeepSeek",
"model": "deepseek-chat", "model": "deepseek-chat",
"apiKey": "REDACTED", "apiKey": "REDACTED",
"provider": "deepseek" "provider": "deepseek",
"apiBase": "https://api.deepseek.com/beta"
}, },
... ...
``` ```

View File

@ -27,7 +27,8 @@
"model": "deepseek-chat", "model": "deepseek-chat",
"contextLength": 128000, "contextLength": 128000,
"apiKey": "REDACTED", "apiKey": "REDACTED",
"provider": "deepseek" "provider": "deepseek",
"apiBase": "https://api.deepseek.com/beta"
} }
], ],
"tabAutocompleteModel": { "tabAutocompleteModel": {
@ -35,6 +36,7 @@
"model": "deepseek-coder", "model": "deepseek-coder",
"apiKey": "REDACTED", "apiKey": "REDACTED",
"provider": "deepseek", "provider": "deepseek",
"apiBase": "https://api.deepseek.com/beta"
}, },
... ...
``` ```