Skip to content
Snippets Groups Projects
Commit b4afb995 authored by timothycarambat's avatar timothycarambat
Browse files

Show default deepseek models on wrong API key

connect #3390
parent fab74037
No related branches found
No related tags found
No related merge requests found
......@@ -496,7 +496,18 @@ async function getDeepSeekModels(apiKey = null) {
)
.catch((e) => {
console.error(`DeepSeek:listModels`, e.message);
return [];
return [
{
id: "deepseek-chat",
name: "deepseek-chat",
organization: "deepseek",
},
{
id: "deepseek-reasoner",
name: "deepseek-reasoner",
organization: "deepseek",
},
];
});
if (models.length > 0 && !!apiKey) process.env.DEEPSEEK_API_KEY = apiKey;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment