mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-27 20:56:12 +01:00
* chore: linting for `loadCustomConfig` * refactor: decouple CDN init and variable/health checks from AppService * refactor: move AppService to packages/data-schemas * chore: update AppConfig import path to use data-schemas * chore: update JsonSchemaType import path to use data-schemas * refactor: update UserController to import webSearchKeys and redefine FunctionTool typedef * chore: remove AppService.js * refactor: update AppConfig interface to use Partial<TCustomConfig> and make paths and fileStrategies optional * refactor: update checkConfig function to accept Partial<TCustomConfig> * chore: fix types * refactor: move handleRateLimits to startup checks as is an effect * test: remove outdated rate limit tests from AppService.spec and add new handleRateLimits tests in checks.spec
70 lines
2.4 KiB
TypeScript
70 lines
2.4 KiB
TypeScript
import { logger } from '@librechat/data-schemas';
|
|
import { EModelEndpoint, removeNullishValues } from 'librechat-data-provider';
|
|
import type { TCustomConfig, TEndpoint, TTransactionsConfig } from 'librechat-data-provider';
|
|
import type { AppConfig } from '@librechat/data-schemas';
|
|
import { isEnabled, normalizeEndpointName } from '~/utils';
|
|
|
|
/**
|
|
* Retrieves the balance configuration object
|
|
* */
|
|
export function getBalanceConfig(appConfig?: AppConfig): Partial<TCustomConfig['balance']> | null {
|
|
const isLegacyEnabled = isEnabled(process.env.CHECK_BALANCE);
|
|
const startBalance = process.env.START_BALANCE;
|
|
/** @type {} */
|
|
const config: Partial<TCustomConfig['balance']> = removeNullishValues({
|
|
enabled: isLegacyEnabled,
|
|
startBalance: startBalance != null && startBalance ? parseInt(startBalance, 10) : undefined,
|
|
});
|
|
if (!appConfig) {
|
|
return config;
|
|
}
|
|
return { ...config, ...(appConfig?.['balance'] ?? {}) };
|
|
}
|
|
|
|
/**
|
|
* Retrieves the transactions configuration object
|
|
* */
|
|
export function getTransactionsConfig(appConfig?: AppConfig): Partial<TTransactionsConfig> {
|
|
const defaultConfig: TTransactionsConfig = { enabled: true };
|
|
|
|
if (!appConfig) {
|
|
return defaultConfig;
|
|
}
|
|
|
|
const transactionsConfig = appConfig?.['transactions'] ?? defaultConfig;
|
|
const balanceConfig = getBalanceConfig(appConfig);
|
|
|
|
// If balance is enabled but transactions are disabled, force transactions to be enabled
|
|
// and log a warning
|
|
if (balanceConfig?.enabled && !transactionsConfig.enabled) {
|
|
logger.warn(
|
|
'Configuration warning: transactions.enabled=false is incompatible with balance.enabled=true. ' +
|
|
'Transactions will be enabled to ensure balance tracking works correctly.',
|
|
);
|
|
return { ...transactionsConfig, enabled: true };
|
|
}
|
|
|
|
return transactionsConfig;
|
|
}
|
|
|
|
export const getCustomEndpointConfig = ({
|
|
endpoint,
|
|
appConfig,
|
|
}: {
|
|
endpoint: string | EModelEndpoint;
|
|
appConfig?: AppConfig;
|
|
}): Partial<TEndpoint> | undefined => {
|
|
if (!appConfig) {
|
|
throw new Error(`Config not found for the ${endpoint} custom endpoint.`);
|
|
}
|
|
|
|
const customEndpoints = appConfig.endpoints?.[EModelEndpoint.custom] ?? [];
|
|
return customEndpoints.find(
|
|
(endpointConfig) => normalizeEndpointName(endpointConfig.name) === endpoint,
|
|
);
|
|
};
|
|
|
|
export function hasCustomUserVars(appConfig?: AppConfig): boolean {
|
|
const mcpServers = appConfig?.mcpConfig;
|
|
return Object.values(mcpServers ?? {}).some((server) => server?.customUserVars);
|
|
}
|