mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-27 17:11:46 +00:00
15 lines
463 B
TypeScript
15 lines
463 B
TypeScript
import {
|
|
listKnownProviderAuthEnvVarNames,
|
|
resolveProviderAuthEnvVarCandidates,
|
|
} from "../secrets/provider-env-vars.js";
|
|
|
|
export function resolveProviderEnvApiKeyCandidates(): Record<string, readonly string[]> {
|
|
return resolveProviderAuthEnvVarCandidates();
|
|
}
|
|
|
|
export const PROVIDER_ENV_API_KEY_CANDIDATES = resolveProviderEnvApiKeyCandidates();
|
|
|
|
export function listKnownProviderEnvApiKeyNames(): string[] {
|
|
return listKnownProviderAuthEnvVarNames();
|
|
}
|