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
This commit is contained in:
yuanjiarui 2025-02-25 07:34:52 +08:00 committed by GitHub
parent 855dada426
commit c05871a86b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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"
},
...