Warnings and error handling

This commit is contained in:
Matt Rubens
2025-01-09 00:11:53 -05:00
parent d1c39c17e9
commit 9183244c28
3 changed files with 20 additions and 4 deletions

View File

@@ -13,7 +13,8 @@ export function checkExistKey(config: ApiConfiguration | undefined) {
config.lmStudioModelId,
config.geminiApiKey,
config.openAiNativeApiKey,
config.deepSeekApiKey
config.deepSeekApiKey,
config.vsCodeLmModelSelector,
].some((key) => key !== undefined)
: false;
}