mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-20 06:20:55 +00:00
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,
|
|
};
|