File size: 14,550 Bytes
f56a29b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 | /**
* Server-side Provider Configuration
*
* Loads provider configs from YAML (primary) + environment variables (fallback).
* Keys never leave the server β only provider IDs and metadata are exposed via API.
*/
import fs from 'fs';
import path from 'path';
import yaml from 'js-yaml';
import { createLogger } from '@/lib/logger';
const log = createLogger('ServerProviderConfig');
// ---------------------------------------------------------------------------
// Types
// ---------------------------------------------------------------------------
interface ServerProviderEntry {
apiKey: string;
baseUrl?: string;
models?: string[];
proxy?: string;
}
interface ServerConfig {
providers: Record<string, ServerProviderEntry>;
tts: Record<string, ServerProviderEntry>;
asr: Record<string, ServerProviderEntry>;
pdf: Record<string, ServerProviderEntry>;
image: Record<string, ServerProviderEntry>;
video: Record<string, ServerProviderEntry>;
webSearch: Record<string, ServerProviderEntry>;
}
// ---------------------------------------------------------------------------
// Env-var prefix mappings
// ---------------------------------------------------------------------------
const LLM_ENV_MAP: Record<string, string> = {
OPENAI: 'openai',
ANTHROPIC: 'anthropic',
GOOGLE: 'google',
DEEPSEEK: 'deepseek',
QWEN: 'qwen',
KIMI: 'kimi',
MINIMAX: 'minimax',
GLM: 'glm',
SILICONFLOW: 'siliconflow',
DOUBAO: 'doubao',
OPENROUTER: 'openrouter',
GROK: 'grok',
TENCENT: 'tencent-hunyuan',
TENCENT_HUNYUAN: 'tencent-hunyuan',
XIAOMI: 'xiaomi',
MIMO: 'xiaomi',
OLLAMA: 'ollama',
};
const TTS_ENV_MAP: Record<string, string> = {
TTS_OPENAI: 'openai-tts',
TTS_AZURE: 'azure-tts',
TTS_GLM: 'glm-tts',
TTS_QWEN: 'qwen-tts',
TTS_VOXCPM: 'voxcpm-tts',
TTS_DOUBAO: 'doubao-tts',
TTS_ELEVENLABS: 'elevenlabs-tts',
TTS_MINIMAX: 'minimax-tts',
};
const ASR_ENV_MAP: Record<string, string> = {
ASR_OPENAI: 'openai-whisper',
ASR_QWEN: 'qwen-asr',
};
const PDF_ENV_MAP: Record<string, string> = {
PDF_UNPDF: 'unpdf',
PDF_MINERU: 'mineru',
PDF_MINERU_CLOUD: 'mineru-cloud',
};
const IMAGE_ENV_MAP: Record<string, string> = {
IMAGE_OPENAI: 'openai-image',
IMAGE_SEEDREAM: 'seedream',
IMAGE_QWEN_IMAGE: 'qwen-image',
IMAGE_NANO_BANANA: 'nano-banana',
IMAGE_MINIMAX: 'minimax-image',
IMAGE_GROK: 'grok-image',
};
const VIDEO_ENV_MAP: Record<string, string> = {
VIDEO_SEEDANCE: 'seedance',
VIDEO_KLING: 'kling',
VIDEO_VEO: 'veo',
VIDEO_SORA: 'sora',
VIDEO_MINIMAX: 'minimax-video',
VIDEO_GROK: 'grok-video',
};
const WEB_SEARCH_ENV_MAP: Record<string, string> = {
TAVILY: 'tavily',
};
// ---------------------------------------------------------------------------
// YAML loading
// ---------------------------------------------------------------------------
type YamlData = Partial<{
providers: Record<string, Partial<ServerProviderEntry>>;
tts: Record<string, Partial<ServerProviderEntry>>;
asr: Record<string, Partial<ServerProviderEntry>>;
pdf: Record<string, Partial<ServerProviderEntry>>;
image: Record<string, Partial<ServerProviderEntry>>;
video: Record<string, Partial<ServerProviderEntry>>;
'web-search': Record<string, Partial<ServerProviderEntry>>;
}>;
function loadYamlFile(filename: string): YamlData {
try {
const filePath = path.join(process.cwd(), filename);
if (!fs.existsSync(filePath)) return {};
const raw = fs.readFileSync(filePath, 'utf-8');
const parsed = yaml.load(raw) as Record<string, unknown> | null;
if (!parsed || typeof parsed !== 'object') return {};
return parsed as YamlData;
} catch (e) {
log.warn(`[ServerProviderConfig] Failed to load ${filename}:`, e);
return {};
}
}
// ---------------------------------------------------------------------------
// Env-var helpers
// ---------------------------------------------------------------------------
function loadEnvSection(
envMap: Record<string, string>,
yamlSection: Record<string, Partial<ServerProviderEntry>> | undefined,
{
requiresBaseUrl = false,
keylessProviders = new Set<string>(),
}: { requiresBaseUrl?: boolean; keylessProviders?: Set<string> } = {},
): Record<string, ServerProviderEntry> {
const result: Record<string, ServerProviderEntry> = {};
// First, add everything from YAML as defaults
if (yamlSection) {
for (const [id, entry] of Object.entries(yamlSection)) {
if (
requiresBaseUrl
? !!entry?.baseUrl
: entry?.apiKey || (entry?.baseUrl && keylessProviders.has(id))
) {
result[id] = {
apiKey: entry.apiKey || '',
baseUrl: entry.baseUrl,
models: entry.models,
proxy: entry.proxy,
};
}
}
}
// Then, apply env vars (env takes priority over YAML)
for (const [prefix, providerId] of Object.entries(envMap)) {
const envApiKey = process.env[`${prefix}_API_KEY`] || undefined;
const envBaseUrl = process.env[`${prefix}_BASE_URL`] || undefined;
const envModelsStr = process.env[`${prefix}_MODELS`];
const envModels = envModelsStr
? envModelsStr
.split(',')
.map((m) => m.trim())
.filter(Boolean)
: undefined;
if (result[providerId]) {
// YAML entry exists β env vars override individual fields
if (envApiKey) result[providerId].apiKey = envApiKey;
if (envBaseUrl) result[providerId].baseUrl = envBaseUrl;
if (envModels) result[providerId].models = envModels;
continue;
}
// Activate on API key, or base URL alone for keyless providers (e.g. Ollama)
if (
requiresBaseUrl
? !envBaseUrl
: !(envApiKey || (envBaseUrl && keylessProviders.has(providerId)))
)
continue;
result[providerId] = {
apiKey: envApiKey || '',
baseUrl: envBaseUrl,
models: envModels,
};
}
return result;
}
// ---------------------------------------------------------------------------
// Module-level cache (process singleton)
// ---------------------------------------------------------------------------
const DEFAULT_FILENAME = 'server-providers.yml';
/** Cache keyed by YAML filename (empty string = default file). */
const _configs: Map<string, ServerConfig> = new Map();
function buildConfig(yamlData: YamlData): ServerConfig {
return {
providers: loadEnvSection(LLM_ENV_MAP, yamlData.providers, {
keylessProviders: new Set(['ollama']),
}),
tts: loadEnvSection(TTS_ENV_MAP, yamlData.tts, {
keylessProviders: new Set(['voxcpm-tts']),
}),
asr: loadEnvSection(ASR_ENV_MAP, yamlData.asr),
pdf: loadEnvSection(PDF_ENV_MAP, yamlData.pdf, { requiresBaseUrl: true }),
image: loadEnvSection(IMAGE_ENV_MAP, yamlData.image),
video: loadEnvSection(VIDEO_ENV_MAP, yamlData.video),
webSearch: loadEnvSection(WEB_SEARCH_ENV_MAP, yamlData['web-search']),
};
}
function logConfig(config: ServerConfig, label: string): void {
const counts = [
Object.keys(config.providers).length,
Object.keys(config.tts).length,
Object.keys(config.asr).length,
Object.keys(config.pdf).length,
Object.keys(config.image).length,
Object.keys(config.video).length,
Object.keys(config.webSearch).length,
];
if (counts.some((c) => c > 0)) {
log.info(
`[ServerProviderConfig] Loaded (${label}): ${counts[0]} LLM, ${counts[1]} TTS, ${counts[2]} ASR, ${counts[3]} PDF, ${counts[4]} Image, ${counts[5]} Video, ${counts[6]} WebSearch providers`,
);
}
}
function getConfig(): ServerConfig {
const cached = _configs.get('');
if (cached) return cached;
const yamlData = loadYamlFile(DEFAULT_FILENAME);
const config = buildConfig(yamlData);
logConfig(config, DEFAULT_FILENAME);
_configs.set('', config);
return config;
}
// ---------------------------------------------------------------------------
// Public API β LLM
// ---------------------------------------------------------------------------
/** Returns server-configured LLM providers (no apiKeys) */
export function getServerProviders(): Record<string, { models?: string[]; baseUrl?: string }> {
const cfg = getConfig();
const result: Record<string, { models?: string[]; baseUrl?: string }> = {};
for (const [id, entry] of Object.entries(cfg.providers)) {
result[id] = {};
if (entry.models && entry.models.length > 0) result[id].models = entry.models;
if (entry.baseUrl) result[id].baseUrl = entry.baseUrl;
}
return result;
}
/** Resolve API key: client key > server key > empty string */
export function resolveApiKey(providerId: string, clientKey?: string): string {
if (clientKey) return clientKey;
return getConfig().providers[providerId]?.apiKey || '';
}
/** Resolve base URL: client > server > undefined */
export function resolveBaseUrl(providerId: string, clientBaseUrl?: string): string | undefined {
if (clientBaseUrl) return clientBaseUrl;
return getConfig().providers[providerId]?.baseUrl;
}
/** Resolve proxy URL for a provider (server config only) */
export function resolveProxy(providerId: string): string | undefined {
return getConfig().providers[providerId]?.proxy;
}
// ---------------------------------------------------------------------------
// Public API β TTS
// ---------------------------------------------------------------------------
export function getServerTTSProviders(): Record<string, { baseUrl?: string }> {
const cfg = getConfig();
const result: Record<string, { baseUrl?: string }> = {};
for (const [id, entry] of Object.entries(cfg.tts)) {
result[id] = {};
if (entry.baseUrl) result[id].baseUrl = entry.baseUrl;
}
return result;
}
export function resolveTTSApiKey(providerId: string, clientKey?: string): string {
if (clientKey) return clientKey;
return getConfig().tts[providerId]?.apiKey || '';
}
export function resolveTTSBaseUrl(providerId: string, clientBaseUrl?: string): string | undefined {
if (clientBaseUrl) return clientBaseUrl;
return getConfig().tts[providerId]?.baseUrl;
}
// ---------------------------------------------------------------------------
// Public API β ASR
// ---------------------------------------------------------------------------
export function getServerASRProviders(): Record<string, { baseUrl?: string }> {
const cfg = getConfig();
const result: Record<string, { baseUrl?: string }> = {};
for (const [id, entry] of Object.entries(cfg.asr)) {
result[id] = {};
if (entry.baseUrl) result[id].baseUrl = entry.baseUrl;
}
return result;
}
export function resolveASRApiKey(providerId: string, clientKey?: string): string {
if (clientKey) return clientKey;
return getConfig().asr[providerId]?.apiKey || '';
}
export function resolveASRBaseUrl(providerId: string, clientBaseUrl?: string): string | undefined {
if (clientBaseUrl) return clientBaseUrl;
return getConfig().asr[providerId]?.baseUrl;
}
// ---------------------------------------------------------------------------
// Public API β PDF
// ---------------------------------------------------------------------------
export function getServerPDFProviders(): Record<string, { baseUrl?: string }> {
const cfg = getConfig();
const result: Record<string, { baseUrl?: string }> = {};
for (const [id, entry] of Object.entries(cfg.pdf)) {
result[id] = {};
if (entry.baseUrl) result[id].baseUrl = entry.baseUrl;
}
return result;
}
export function resolvePDFApiKey(providerId: string, clientKey?: string): string {
if (clientKey) return clientKey;
return getConfig().pdf[providerId]?.apiKey || '';
}
export function resolvePDFBaseUrl(providerId: string, clientBaseUrl?: string): string | undefined {
if (clientBaseUrl) return clientBaseUrl;
return getConfig().pdf[providerId]?.baseUrl;
}
// ---------------------------------------------------------------------------
// Public API β Image Generation
// ---------------------------------------------------------------------------
export function getServerImageProviders(): Record<string, { baseUrl?: string }> {
const cfg = getConfig();
const result: Record<string, { baseUrl?: string }> = {};
for (const [id, entry] of Object.entries(cfg.image)) {
result[id] = {};
if (entry.baseUrl) result[id].baseUrl = entry.baseUrl;
}
return result;
}
export function resolveImageApiKey(providerId: string, clientKey?: string): string {
if (clientKey) return clientKey;
return getConfig().image[providerId]?.apiKey || '';
}
export function resolveImageBaseUrl(
providerId: string,
clientBaseUrl?: string,
): string | undefined {
if (clientBaseUrl) return clientBaseUrl;
return getConfig().image[providerId]?.baseUrl;
}
// ---------------------------------------------------------------------------
// Public API β Video Generation
// ---------------------------------------------------------------------------
export function getServerVideoProviders(): Record<string, { baseUrl?: string }> {
const cfg = getConfig();
const result: Record<string, { baseUrl?: string }> = {};
for (const [id, entry] of Object.entries(cfg.video)) {
result[id] = {};
if (entry.baseUrl) result[id].baseUrl = entry.baseUrl;
}
return result;
}
export function resolveVideoApiKey(providerId: string, clientKey?: string): string {
if (clientKey) return clientKey;
return getConfig().video[providerId]?.apiKey || '';
}
export function resolveVideoBaseUrl(
providerId: string,
clientBaseUrl?: string,
): string | undefined {
if (clientBaseUrl) return clientBaseUrl;
return getConfig().video[providerId]?.baseUrl;
}
// ---------------------------------------------------------------------------
// Public API β Web Search (Tavily)
// ---------------------------------------------------------------------------
/** Returns server-configured web search providers (no apiKeys exposed) */
export function getServerWebSearchProviders(): Record<string, { baseUrl?: string }> {
const cfg = getConfig();
const result: Record<string, { baseUrl?: string }> = {};
for (const [id, entry] of Object.entries(cfg.webSearch)) {
result[id] = {};
if (entry.baseUrl) result[id].baseUrl = entry.baseUrl;
}
return result;
}
/** Resolve Tavily API key: client key > server key > TAVILY_API_KEY env > empty */
export function resolveWebSearchApiKey(clientKey?: string): string {
if (clientKey) return clientKey;
const serverKey = getConfig().webSearch.tavily?.apiKey;
if (serverKey) return serverKey;
return process.env.TAVILY_API_KEY || '';
}
|