426e9eeabd
Voice Workbench / headless workbench (mocked backends) (push) Has been cancelled
Voice Workbench / real acoustic lane (nightly, provisioned only) (push) Has been cancelled
ci / test (push) Has been cancelled
ci / lint-and-format (push) Has been cancelled
ci / build (push) Has been cancelled
ci / dev-startup (push) Has been cancelled
gitleaks / gitleaks (push) Has been cancelled
Markdown Links / Relative Markdown Links (push) Has been cancelled
Quality (Extended) / Homepage Build (PR smoke) (push) Has been cancelled
Quality (Extended) / Comment-only diff guard (push) Has been cancelled
Quality (Extended) / Format + Type Safety Ratchet (push) Has been cancelled
Quality (Extended) / Develop Gate (secret scan + UI determinism) (push) Has been cancelled
Quality (Extended) / Develop Gate (lint) (push) Has been cancelled
Chat shell gestures / Chat shell gesture + parity e2e (push) Has been cancelled
Cloud Gateway Discord / Test (push) Has been cancelled
Benchmark Bridge Tests / benchmark (bunx @biomejs/biome check packages/lifeops-bench/src, benchmark-lint) (push) Has been cancelled
Benchmark Bridge Tests / benchmark (bunx vitest run --config packages/lifeops-bench/vitest.config.ts --root packages/lifeops-bench --passWithNoTests, benchmark-tests) (push) Has been cancelled
Build Agent Image / build-and-push (push) Has been cancelled
Dev Smoke / bun run dev onboarding chat (push) Has been cancelled
Dev Smoke / Vite HMR dependency-level smoke (push) Has been cancelled
Electrobun Submodule Guard / electrobun gitlink is fetchable (push) Has been cancelled
Publish @elizaos/example-code / check_npm (push) Has been cancelled
Publish @elizaos/example-code / publish_npm (push) Has been cancelled
Publish @elizaos/plugin-elizacloud / verify_version (push) Has been cancelled
Publish @elizaos/plugin-elizacloud / publish_npm (push) Has been cancelled
Sandbox Live Smoke / Sandbox live smoke (push) Has been cancelled
Snap Build & Test / Build Snap (amd64) (push) Has been cancelled
Snap Build & Test / Build Snap (arm64) (push) Has been cancelled
Test Packaging / elizaos CLI global-install smoke (node + bun) (push) Has been cancelled
Cloud Gateway Webhook / Test (push) Has been cancelled
Cloud Tests / lint-and-types (push) Has been cancelled
Cloud Tests / unit-tests (push) Has been cancelled
Cloud Tests / integration-tests (push) Has been cancelled
Cloud Tests / e2e-tests (push) Has been cancelled
CodeQL Advanced / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Apps Worker (Product 2) / Determine environment (push) Has been cancelled
Deploy Apps Worker (Product 2) / Deploy apps worker to apps-control host (${{ needs.determine-env.outputs.environment }}) (push) Has been cancelled
Deploy Eliza Provisioning Worker / Determine environment (push) Has been cancelled
Deploy Eliza Provisioning Worker / Deploy worker to Hetzner host (${{ needs.determine-env.outputs.environment }} @ ${{ needs.determine-env.outputs.deployment_sha }}) (push) Has been cancelled
Dev Smoke / Classify changed paths (push) Has been cancelled
supply-chain / sbom (push) Has been cancelled
supply-chain / vulnerability-scan (push) Has been cancelled
Build, Push & Deploy to Phala Cloud / build-and-push (push) Has been cancelled
Test Packaging / Validate Packaging Configs (push) Has been cancelled
Test Packaging / Build & Test PyPI Package (push) Has been cancelled
Test Packaging / PyPI on Python ${{ matrix.python }} (push) Has been cancelled
Test Packaging / Pack & Test JS Tarballs (push) Has been cancelled
UI Fixture E2E / ui-fixture-e2e (push) Has been cancelled
UI Fixture E2E / fixture-e2e (push) Has been cancelled
UI Story Gate / story-gate (push) Has been cancelled
vault-ci / test (macos-latest) (push) Has been cancelled
vault-ci / test (ubuntu-latest) (push) Has been cancelled
vault-ci / test (windows-latest) (push) Has been cancelled
vault-ci / app-core wiring tests (push) Has been cancelled
verify-patches / verify patches/CHECKSUMS.sha256 (push) Has been cancelled
Voice Benchmark Smoke / voice-emotion fixture smoke (push) Has been cancelled
Voice Benchmark Smoke / voiceagentbench fixture smoke (push) Has been cancelled
Voice Benchmark Smoke / voicebench-quality unit smoke (push) Has been cancelled
Voice Benchmark Smoke / voicebench TypeScript unit (no audio) (push) Has been cancelled
Voice Benchmark Smoke / voice bench smoke summary (push) Has been cancelled
Windows CI / windows ([bun run --cwd packages/app-core test bun run --cwd packages/elizaos test bun run --cwd packages/cloud/shared test], app-and-cli) (push) Has been cancelled
Windows CI / windows ([bun run --cwd packages/scenario-runner test bun run --cwd packages/vault test bun run --cwd packages/security test bun run --cwd plugins/plugin-coding-tools test], framework-packages) (push) Has been cancelled
Windows CI / windows ([bun run --cwd plugins/plugin-elizacloud test bun run --cwd plugins/plugin-discord test bun run --cwd plugins/plugin-anthropic test bun run --cwd plugins/plugin-openai test bun run --cwd plugins/plugin-app-control test bun run --cwd plugins/pl… (push) Has been cancelled
Windows CI / windows ([node packages/scripts/run-turbo.mjs run build --filter=@elizaos/core --filter=@elizaos/shared --filter=@elizaos/agent --concurrency=4 node packages/scripts/run-bash-linux-only.mjs scripts/verify-riscv64-buildpaths.sh node packages/scripts/run… (push) Has been cancelled
Windows CI / windows ([node packages/scripts/run-turbo.mjs run typecheck --filter=@elizaos/core --filter=@elizaos/shared --filter=@elizaos/cloud-shared --concurrency=4 bun run --cwd packages/core test bun run --cwd packages/shared test], core-runtime, 75) (push) Has been cancelled
390 lines
13 KiB
TypeScript
390 lines
13 KiB
TypeScript
/**
|
|
* Central settings and endpoint resolution for the plugin: `getSetting` reads
|
|
* runtime config first then `process.env`, and the typed getters here resolve
|
|
* every model slot, base URL, auth header, embedding dimension, and timeout with
|
|
* their documented fallback chains. Also home to provider-mode detection
|
|
* (Cerebras / EvoLink / proxy) and the browser-vs-node branch that decides
|
|
* whether an `Authorization` header is sent.
|
|
*/
|
|
import type { IAgentRuntime } from "@elizaos/core";
|
|
import { DEFAULT_CEREBRAS_TEXT_MODEL, logger } from "@elizaos/core";
|
|
|
|
function getEnvValue(key: string): string | undefined {
|
|
if (typeof process === "undefined" || !process.env) {
|
|
return undefined;
|
|
}
|
|
const value = process.env[key];
|
|
return value === undefined ? undefined : String(value);
|
|
}
|
|
|
|
export function getSetting(
|
|
runtime: IAgentRuntime,
|
|
key: string,
|
|
defaultValue?: string
|
|
): string | undefined {
|
|
const value = runtime.getSetting(key);
|
|
if (value !== undefined && value !== null) {
|
|
return String(value);
|
|
}
|
|
return getEnvValue(key) ?? defaultValue;
|
|
}
|
|
export function getRequiredSetting(
|
|
runtime: IAgentRuntime,
|
|
key: string,
|
|
errorMessage?: string
|
|
): string {
|
|
const value = getSetting(runtime, key);
|
|
if (value === undefined || value.trim() === "") {
|
|
throw new Error(errorMessage ?? `Required setting '${key}' is not configured`);
|
|
}
|
|
return value;
|
|
}
|
|
|
|
export function getNumericSetting(
|
|
runtime: IAgentRuntime,
|
|
key: string,
|
|
defaultValue: number
|
|
): number {
|
|
const value = getSetting(runtime, key);
|
|
if (value === undefined) {
|
|
return defaultValue;
|
|
}
|
|
const parsed = Number.parseInt(value, 10);
|
|
if (!Number.isFinite(parsed)) {
|
|
throw new Error(`Setting '${key}' must be a valid integer, got: ${value}`);
|
|
}
|
|
return parsed;
|
|
}
|
|
|
|
export function getBooleanSetting(
|
|
runtime: IAgentRuntime,
|
|
key: string,
|
|
defaultValue: boolean
|
|
): boolean {
|
|
const value = getSetting(runtime, key);
|
|
if (value === undefined) {
|
|
return defaultValue;
|
|
}
|
|
const normalized = value.toLowerCase();
|
|
return normalized === "true" || normalized === "1" || normalized === "yes";
|
|
}
|
|
|
|
export function isBrowser(): boolean {
|
|
return (
|
|
typeof globalThis !== "undefined" &&
|
|
typeof (globalThis as { document?: Document }).document !== "undefined"
|
|
);
|
|
}
|
|
|
|
export function isProxyMode(runtime: IAgentRuntime): boolean {
|
|
return isBrowser() && !!getSetting(runtime, "OPENAI_BROWSER_BASE_URL");
|
|
}
|
|
|
|
/**
|
|
* True when the resolved base URL or `ELIZA_PROVIDER` setting marks the
|
|
* runtime as using Cerebras's OpenAI-compatible endpoint. Used to scope
|
|
* the `CEREBRAS_API_KEY` alias so OpenAI users are not affected.
|
|
*/
|
|
export function isCerebrasMode(runtime: IAgentRuntime): boolean {
|
|
const explicitProvider = getSetting(runtime, "ELIZA_PROVIDER");
|
|
if (explicitProvider && explicitProvider.toLowerCase() === "cerebras") {
|
|
return true;
|
|
}
|
|
const baseURL = getSetting(runtime, "OPENAI_BASE_URL");
|
|
if (baseURL && /(^|\.)cerebras\.ai(\/|$)/i.test(baseURL)) {
|
|
return true;
|
|
}
|
|
const cerebrasKey = getSetting(runtime, "CEREBRAS_API_KEY");
|
|
if (
|
|
cerebrasKey &&
|
|
!getSetting(runtime, "OPENAI_API_KEY") &&
|
|
!getSetting(runtime, "OPENAI_BASE_URL")
|
|
) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* True when the resolved base URL or `ELIZA_PROVIDER` setting marks the
|
|
* runtime as using EvoLink's OpenAI-compatible endpoint. Used to scope the
|
|
* `EVOLINK_API_KEY` alias so OpenAI users are not affected.
|
|
*/
|
|
export function isEvoLinkMode(runtime: IAgentRuntime): boolean {
|
|
const explicitProvider = getSetting(runtime, "ELIZA_PROVIDER");
|
|
if (explicitProvider && explicitProvider.toLowerCase() === "evolink") {
|
|
return true;
|
|
}
|
|
const baseURL = getSetting(runtime, "OPENAI_BASE_URL");
|
|
if (baseURL && /(^|\.)evolink\.ai(\/|$)/i.test(baseURL)) {
|
|
return true;
|
|
}
|
|
const evolinkKey = getSetting(runtime, "EVOLINK_API_KEY");
|
|
if (
|
|
evolinkKey &&
|
|
!getSetting(runtime, "OPENAI_API_KEY") &&
|
|
!getSetting(runtime, "OPENAI_BASE_URL")
|
|
) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
export function getApiKey(runtime: IAgentRuntime): string | undefined {
|
|
// Cerebras serves an OpenAI-compatible API. When the runtime is pointed at
|
|
// Cerebras (either via `ELIZA_PROVIDER=cerebras` or an `OPENAI_BASE_URL`
|
|
// matching `*.cerebras.ai`), accept `CEREBRAS_API_KEY` as a synonym for
|
|
// `OPENAI_API_KEY`. Cerebras key is checked first so an explicit Cerebras
|
|
// key wins over a stale OpenAI key in the same env.
|
|
if (isCerebrasMode(runtime)) {
|
|
const cerebrasKey = getSetting(runtime, "CEREBRAS_API_KEY");
|
|
if (cerebrasKey) {
|
|
return cerebrasKey;
|
|
}
|
|
}
|
|
if (isEvoLinkMode(runtime)) {
|
|
const evolinkKey = getSetting(runtime, "EVOLINK_API_KEY");
|
|
if (evolinkKey) {
|
|
return evolinkKey;
|
|
}
|
|
}
|
|
return getSetting(runtime, "OPENAI_API_KEY");
|
|
}
|
|
|
|
export function getEmbeddingApiKey(runtime: IAgentRuntime): string | undefined {
|
|
const embeddingApiKey = getSetting(runtime, "OPENAI_EMBEDDING_API_KEY");
|
|
if (embeddingApiKey) {
|
|
logger.debug("[OpenAI] Using specific embedding API key");
|
|
return embeddingApiKey;
|
|
}
|
|
logger.debug("[OpenAI] Falling back to general API key for embeddings");
|
|
return getApiKey(runtime);
|
|
}
|
|
|
|
export function getAuthHeader(
|
|
runtime: IAgentRuntime,
|
|
forEmbedding = false
|
|
): Record<string, string> {
|
|
// By default this plugin does NOT send auth headers in the browser. This is safer because
|
|
// frontend builds would otherwise expose secrets. For local demos, you can explicitly
|
|
// opt-in to sending the Authorization header by setting OPENAI_ALLOW_BROWSER_API_KEY=true.
|
|
if (isBrowser() && !getBooleanSetting(runtime, "OPENAI_ALLOW_BROWSER_API_KEY", false)) {
|
|
return {};
|
|
}
|
|
const key = forEmbedding ? getEmbeddingApiKey(runtime) : getApiKey(runtime);
|
|
return key ? { Authorization: `Bearer ${key}` } : {};
|
|
}
|
|
|
|
function authHeaderForKey(runtime: IAgentRuntime, key: string | undefined): Record<string, string> {
|
|
if (isBrowser() && !getBooleanSetting(runtime, "OPENAI_ALLOW_BROWSER_API_KEY", false)) {
|
|
return {};
|
|
}
|
|
return key ? { Authorization: `Bearer ${key}` } : {};
|
|
}
|
|
|
|
/**
|
|
* Route to the wire-level mock server when one is running. `ELIZA_MOCK_OPENAI_BASE`
|
|
* is set only by the in-process mock runner (`packages/test/mocks`) and never in
|
|
* production — honoring it directly mirrors how LifeOps consumes its sibling
|
|
* `ELIZA_MOCK_*_BASE` vars (`mockoon-redirect.ts`). It is authoritative when set
|
|
* (a deliberate test action), so it wins over any configured base or provider
|
|
* mode; in production it is unset and has no effect.
|
|
*/
|
|
function getMockBaseURL(): string | undefined {
|
|
const base = getEnvValue("ELIZA_MOCK_OPENAI_BASE")?.trim();
|
|
return base ? base : undefined;
|
|
}
|
|
|
|
export function getBaseURL(runtime: IAgentRuntime): string {
|
|
const browserURL = getSetting(runtime, "OPENAI_BROWSER_BASE_URL");
|
|
const mockBaseURL = getMockBaseURL();
|
|
const cerebrasBaseURL =
|
|
isCerebrasMode(runtime) && !getSetting(runtime, "OPENAI_BASE_URL")
|
|
? (getSetting(runtime, "CEREBRAS_BASE_URL") ?? "https://api.cerebras.ai/v1")
|
|
: undefined;
|
|
const evolinkBaseURL =
|
|
isEvoLinkMode(runtime) && !getSetting(runtime, "OPENAI_BASE_URL")
|
|
? (getSetting(runtime, "EVOLINK_BASE_URL") ?? "https://direct.evolink.ai/v1")
|
|
: undefined;
|
|
const baseURL =
|
|
isBrowser() && browserURL
|
|
? browserURL
|
|
: (mockBaseURL ??
|
|
getSetting(runtime, "OPENAI_BASE_URL") ??
|
|
cerebrasBaseURL ??
|
|
evolinkBaseURL ??
|
|
"https://api.openai.com/v1");
|
|
logger.debug(`[OpenAI] Base URL: ${baseURL}`);
|
|
return baseURL;
|
|
}
|
|
|
|
export function getEmbeddingBaseURL(runtime: IAgentRuntime): string {
|
|
const embeddingURL = isBrowser()
|
|
? (getSetting(runtime, "OPENAI_BROWSER_EMBEDDING_URL") ??
|
|
getSetting(runtime, "OPENAI_BROWSER_BASE_URL"))
|
|
: getSetting(runtime, "OPENAI_EMBEDDING_URL");
|
|
|
|
if (embeddingURL) {
|
|
logger.debug(`[OpenAI] Using embedding base URL: ${embeddingURL}`);
|
|
return embeddingURL;
|
|
}
|
|
|
|
logger.debug("[OpenAI] Falling back to general base URL for embeddings");
|
|
return getBaseURL(runtime);
|
|
}
|
|
|
|
export function getImageDescriptionApiKey(runtime: IAgentRuntime): string | undefined {
|
|
const imageDescriptionApiKey = getSetting(runtime, "OPENAI_IMAGE_DESCRIPTION_API_KEY");
|
|
if (imageDescriptionApiKey) {
|
|
return imageDescriptionApiKey;
|
|
}
|
|
const imageDescriptionURL = getSetting(runtime, "OPENAI_IMAGE_DESCRIPTION_BASE_URL");
|
|
if (imageDescriptionURL && /(^|\.)openai\.com(\/|$)/i.test(imageDescriptionURL)) {
|
|
return getSetting(runtime, "OPENAI_API_KEY");
|
|
}
|
|
return getApiKey(runtime);
|
|
}
|
|
|
|
export function getImageDescriptionAuthHeader(runtime: IAgentRuntime): Record<string, string> {
|
|
return authHeaderForKey(runtime, getImageDescriptionApiKey(runtime));
|
|
}
|
|
|
|
export function getImageDescriptionBaseURL(runtime: IAgentRuntime): string {
|
|
const imageDescriptionURL = getSetting(runtime, "OPENAI_IMAGE_DESCRIPTION_BASE_URL");
|
|
if (imageDescriptionURL) {
|
|
logger.debug(`[OpenAI] Using image-description base URL: ${imageDescriptionURL}`);
|
|
return imageDescriptionURL;
|
|
}
|
|
return getBaseURL(runtime);
|
|
}
|
|
|
|
function getCerebrasModel(runtime: IAgentRuntime): string | undefined {
|
|
return isCerebrasMode(runtime)
|
|
? getSetting(runtime, "CEREBRAS_MODEL", DEFAULT_CEREBRAS_TEXT_MODEL)
|
|
: undefined;
|
|
}
|
|
|
|
function getEvoLinkModel(runtime: IAgentRuntime): string | undefined {
|
|
return isEvoLinkMode(runtime) ? (getSetting(runtime, "EVOLINK_MODEL") ?? "gpt-5.2") : undefined;
|
|
}
|
|
|
|
export function getSmallModel(runtime: IAgentRuntime): string {
|
|
return (
|
|
getSetting(runtime, "OPENAI_SMALL_MODEL") ??
|
|
getCerebrasModel(runtime) ??
|
|
getEvoLinkModel(runtime) ??
|
|
getSetting(runtime, "SMALL_MODEL") ??
|
|
"gpt-5.4-mini"
|
|
);
|
|
}
|
|
|
|
export function getNanoModel(runtime: IAgentRuntime): string {
|
|
return (
|
|
getSetting(runtime, "OPENAI_NANO_MODEL") ??
|
|
getCerebrasModel(runtime) ??
|
|
getEvoLinkModel(runtime) ??
|
|
getSetting(runtime, "NANO_MODEL") ??
|
|
getSmallModel(runtime)
|
|
);
|
|
}
|
|
|
|
export function getMediumModel(runtime: IAgentRuntime): string {
|
|
return (
|
|
getSetting(runtime, "OPENAI_MEDIUM_MODEL") ??
|
|
getCerebrasModel(runtime) ??
|
|
getEvoLinkModel(runtime) ??
|
|
getSetting(runtime, "MEDIUM_MODEL") ??
|
|
getSmallModel(runtime)
|
|
);
|
|
}
|
|
|
|
export function getLargeModel(runtime: IAgentRuntime): string {
|
|
return (
|
|
getSetting(runtime, "OPENAI_LARGE_MODEL") ??
|
|
getCerebrasModel(runtime) ??
|
|
getEvoLinkModel(runtime) ??
|
|
getSetting(runtime, "LARGE_MODEL") ??
|
|
"gpt-5"
|
|
);
|
|
}
|
|
|
|
export function getMegaModel(runtime: IAgentRuntime): string {
|
|
return (
|
|
getSetting(runtime, "OPENAI_MEGA_MODEL") ??
|
|
getSetting(runtime, "MEGA_MODEL") ??
|
|
getLargeModel(runtime)
|
|
);
|
|
}
|
|
|
|
export function getResponseHandlerModel(runtime: IAgentRuntime): string {
|
|
return (
|
|
getSetting(runtime, "OPENAI_RESPONSE_HANDLER_MODEL") ??
|
|
getSetting(runtime, "OPENAI_SHOULD_RESPOND_MODEL") ??
|
|
getCerebrasModel(runtime) ??
|
|
getEvoLinkModel(runtime) ??
|
|
getSetting(runtime, "RESPONSE_HANDLER_MODEL") ??
|
|
getSetting(runtime, "SHOULD_RESPOND_MODEL") ??
|
|
getSmallModel(runtime)
|
|
);
|
|
}
|
|
|
|
export function getActionPlannerModel(runtime: IAgentRuntime): string {
|
|
return (
|
|
getSetting(runtime, "OPENAI_ACTION_PLANNER_MODEL") ??
|
|
getSetting(runtime, "OPENAI_PLANNER_MODEL") ??
|
|
getCerebrasModel(runtime) ??
|
|
getEvoLinkModel(runtime) ??
|
|
getSetting(runtime, "ACTION_PLANNER_MODEL") ??
|
|
getSetting(runtime, "PLANNER_MODEL") ??
|
|
getMediumModel(runtime)
|
|
);
|
|
}
|
|
|
|
export function getEmbeddingModel(runtime: IAgentRuntime): string {
|
|
return getSetting(runtime, "OPENAI_EMBEDDING_MODEL") ?? "text-embedding-3-small";
|
|
}
|
|
|
|
export function getImageDescriptionModel(runtime: IAgentRuntime): string {
|
|
return getSetting(runtime, "OPENAI_IMAGE_DESCRIPTION_MODEL") ?? "gpt-5-mini";
|
|
}
|
|
|
|
export function getTranscriptionModel(runtime: IAgentRuntime): string {
|
|
return getSetting(runtime, "OPENAI_TRANSCRIPTION_MODEL") ?? "gpt-5-mini-transcribe";
|
|
}
|
|
|
|
export function getTTSModel(runtime: IAgentRuntime): string {
|
|
return getSetting(runtime, "OPENAI_TTS_MODEL") ?? "gpt-5-mini-tts";
|
|
}
|
|
|
|
export function getTTSVoice(runtime: IAgentRuntime): string {
|
|
return getSetting(runtime, "OPENAI_TTS_VOICE") ?? "nova";
|
|
}
|
|
|
|
export function getTTSInstructions(runtime: IAgentRuntime): string {
|
|
return getSetting(runtime, "OPENAI_TTS_INSTRUCTIONS") ?? "";
|
|
}
|
|
|
|
export function getImageModel(runtime: IAgentRuntime): string {
|
|
return getSetting(runtime, "OPENAI_IMAGE_MODEL") ?? "dall-e-3";
|
|
}
|
|
|
|
export function getExperimentalTelemetry(runtime: IAgentRuntime): boolean {
|
|
return getBooleanSetting(runtime, "OPENAI_EXPERIMENTAL_TELEMETRY", false);
|
|
}
|
|
|
|
export function getEmbeddingDimensions(runtime: IAgentRuntime): number {
|
|
return getNumericSetting(runtime, "OPENAI_EMBEDDING_DIMENSIONS", 1536);
|
|
}
|
|
|
|
export function getImageDescriptionMaxTokens(runtime: IAgentRuntime): number {
|
|
return getNumericSetting(runtime, "OPENAI_IMAGE_DESCRIPTION_MAX_TOKENS", 8192);
|
|
}
|
|
|
|
export function getResearchModel(runtime: IAgentRuntime): string {
|
|
return getSetting(runtime, "OPENAI_RESEARCH_MODEL") ?? "o3-deep-research";
|
|
}
|
|
|
|
export function getResearchTimeout(runtime: IAgentRuntime): number {
|
|
return getNumericSetting(runtime, "OPENAI_RESEARCH_TIMEOUT", 3600000);
|
|
}
|