Merge pull request #58 from Tokisakix/main

fix: fix continue docs's config example
This commit is contained in:
Huang Panpan 2025-01-03 15:01:28 +08:00 committed by GitHub
commit 168809b523
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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",
"contextLength": 128000,
"apiKey": "REDACTED",
"provider": "deepseek"
"provider": "deepseek",
"apiBase": "https://api.deepseek.com/beta"
}
],
"tabAutocompleteModel": {
"title": "DeepSeek",
"model": "deepseek-chat",
"apiKey": "REDACTED",
"provider": "deepseek"
"provider": "deepseek",
"apiBase": "https://api.deepseek.com/beta"
},
...
```

View File

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