From cd03d9bc60ff92334cc04af8bc5d3168495040eb Mon Sep 17 00:00:00 2001 From: yuanjiarui Date: Mon, 24 Feb 2025 18:50:50 +0800 Subject: [PATCH] Update the config.json of the 'continue' integration I have tried to use deepseek api in continue (the extension of VSCode which helps to code with AI). It seems that the config.json code block show different "provider" value compared to the picture below teh code block. I have tried both. "provider": "openai" works for me. So I think the "provider" in code block needs to be amended --- docs/continue/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/continue/README.md b/docs/continue/README.md index f03b007..81cdfde 100644 --- a/docs/continue/README.md +++ b/docs/continue/README.md @@ -27,7 +27,7 @@ Continue will generate, refactor, and explain entire sections of code with LLMs. "model": "deepseek-chat", "contextLength": 128000, "apiKey": "REDACTED", - "provider": "deepseek", + "provider": "openai", "apiBase": "https://api.deepseek.com/beta" } ], @@ -35,7 +35,7 @@ Continue will generate, refactor, and explain entire sections of code with LLMs. "title": "DeepSeek", "model": "deepseek-chat", "apiKey": "REDACTED", - "provider": "deepseek", + "provider": "openai", "apiBase": "https://api.deepseek.com/beta" }, ...