Files
Roo-Code/src/shared/checkExistApiConfig.ts
2025-01-09 00:11:53 -05:00

21 lines
498 B
TypeScript

import { ApiConfiguration } from "../shared/api";
export function checkExistKey(config: ApiConfiguration | undefined) {
return config
? [
config.apiKey,
config.glamaApiKey,
config.openRouterApiKey,
config.awsRegion,
config.vertexProjectId,
config.openAiApiKey,
config.ollamaModelId,
config.lmStudioModelId,
config.geminiApiKey,
config.openAiNativeApiKey,
config.deepSeekApiKey,
config.vsCodeLmModelSelector,
].some((key) => key !== undefined)
: false;
}