mirror of https://github.com/openclaw/openclaw.git
17 lines
488 B
TypeScript
17 lines
488 B
TypeScript
import { applyAuthProfileConfig, buildApiKeyCredential } from "./provider-auth-helpers.js";
|
|
import {
|
|
ensureApiKeyFromOptionEnvOrPrompt,
|
|
normalizeApiKeyInput,
|
|
validateApiKeyInput,
|
|
} from "./provider-auth-input.js";
|
|
import { applyPrimaryModel } from "./provider-model-primary.js";
|
|
|
|
export const providerApiKeyAuthRuntime = {
|
|
applyAuthProfileConfig,
|
|
applyPrimaryModel,
|
|
buildApiKeyCredential,
|
|
ensureApiKeyFromOptionEnvOrPrompt,
|
|
normalizeApiKeyInput,
|
|
validateApiKeyInput,
|
|
};
|