From c05871a86beafc74af2e1d94b43d50b2b03b4f99 Mon Sep 17 00:00:00 2001 From: yuanjiarui Date: Tue, 25 Feb 2025 07:34:52 +0800 Subject: [PATCH] Update the config.json of the 'continue' integration (#319) 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" }, ...