mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 04:11:10 -05:00
21 lines
498 B
TypeScript
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;
|
|
}
|