File size: 27,021 Bytes
20f83d9 | 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 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 | import { CHROME_UA } from './constants';
import { isModelUsable, isProviderAvailable, recordModelFailure, recordModelSuccess } from './llm-health';
import { sanitizeForPrompt } from './llm-sanitize.js';
import { buildLlmCallEvent, deliverUsageEvents, type LlmCallEvent } from './usage';
import {
getLlmAttemptTimeoutMs,
OPENROUTER_PROVIDER_ROUTING,
} from '../../scripts/_llm-model-timeouts.mjs';
export { getLlmAttemptTimeoutMs } from '../../scripts/_llm-model-timeouts.mjs';
function promptChars(messages: Array<{ role: string; content: string }>): number {
return messages.reduce((sum, m) => sum + (m.content?.length ?? 0), 0);
}
// Best-effort, awaited: one POST per logical call (all provider attempts
// batched). deliverUsageEvents no-ops unless USAGE_TELEMETRY=1; awaiting a
// β€1.5s-bounded telemetry write is noise next to a multi-second completion
// and survives Edge isolate teardown (no dangling promise).
async function flushLlmEvents(events: LlmCallEvent[]): Promise<void> {
if (events.length === 0) return;
try {
await deliverUsageEvents(events);
} catch { /* telemetry must never affect the call result */ }
}
export interface ProviderCredentials {
apiUrl: string;
model: string;
headers: Record<string, string>;
extraBody?: Record<string, unknown>;
}
export type LlmProviderName = 'ollama' | 'groq' | 'openrouter' | 'generic';
export interface ProviderCredentialOverrides {
model?: string;
/** OpenRouter only: let reasoning-capable models reason (reasoning profile). Default false β utility calls must not pay reasoning tokens. */
enableReasoning?: boolean;
}
const OLLAMA_HOST_ALLOWLIST = new Set([
'localhost', '127.0.0.1', '::1', '[::1]', 'host.docker.internal',
]);
function isLocalDeployment(): boolean {
const mode = typeof process !== 'undefined' ? (process.env?.LOCAL_API_MODE || '') : '';
return mode.includes('sidecar') || mode.includes('docker');
}
// OpenRouter provider routing now lives in scripts/_llm-model-timeouts.mjs, next to
// the Flash completion timeout it is inseparable from. It used to be defined HERE
// only, which meant the Railway forecast seeder (which cannot import server/) had the
// timeout but NOT the routing: OpenRouter free-routed its calls to backends 4-7x
// slower than the timeout allowed, and every market_implications run failed. One
// source of truth so a consumer cannot pick up the timeout without the routing.
export function getProviderCredentials(
provider: string,
overrides: ProviderCredentialOverrides = {},
): ProviderCredentials | null {
if (provider === 'ollama') {
const baseUrl = process.env.OLLAMA_API_URL;
if (!baseUrl) return null;
if (!isLocalDeployment()) {
try {
const hostname = new URL(baseUrl).hostname;
if (!OLLAMA_HOST_ALLOWLIST.has(hostname)) {
console.warn(`[llm] Ollama blocked: hostname "${hostname}" not in allowlist`);
return null;
}
} catch {
return null;
}
}
const headers: Record<string, string> = { 'Content-Type': 'application/json' };
const apiKey = process.env.OLLAMA_API_KEY;
if (apiKey) headers.Authorization = `Bearer ${apiKey}`;
return {
apiUrl: new URL('/v1/chat/completions', baseUrl).toString(),
model: overrides.model || process.env.OLLAMA_MODEL || 'llama3.1:8b',
headers,
extraBody: { think: false },
};
}
if (provider === 'groq') {
const apiKey = process.env.GROQ_API_KEY;
if (!apiKey) return null;
return {
apiUrl: 'https://api.groq.com/openai/v1/chat/completions',
model: overrides.model || 'llama-3.3-70b-versatile',
headers: {
'Authorization': `Bearer ${apiKey}`,
'Content-Type': 'application/json',
},
};
}
if (provider === 'openrouter') {
const apiKey = process.env.OPENROUTER_API_KEY;
if (!apiKey) return null;
return {
apiUrl: 'https://openrouter.ai/api/v1/chat/completions',
model: overrides.model || 'deepseek/deepseek-v4-flash',
headers: {
'Authorization': `Bearer ${apiKey}`,
'Content-Type': 'application/json',
'HTTP-Referer': 'https://worldmonitor.app',
'X-Title': 'World Monitor',
},
// Hybrid-reasoning models (DeepSeek V4) reason by default via
// OpenRouter's normalized `reasoning` param; utility calls must not
// pay reasoning tokens. The reasoning profile opts back in, letting
// the model's own default apply. `provider` routing is always sent β
// the China-provider exclusion is not optional (see the constant).
extraBody: {
...(overrides.enableReasoning ? {} : { reasoning: { enabled: false } }),
provider: OPENROUTER_PROVIDER_ROUTING,
},
};
}
// Generic OpenAI-compatible endpoint via LLM_API_URL/LLM_API_KEY/LLM_MODEL
if (provider === 'generic') {
const apiUrl = process.env.LLM_API_URL;
const apiKey = process.env.LLM_API_KEY;
if (!apiUrl || !apiKey) return null;
return {
apiUrl,
model: overrides.model || process.env.LLM_MODEL || 'gpt-3.5-turbo',
headers: {
'Authorization': `Bearer ${apiKey}`,
'Content-Type': 'application/json',
},
};
}
return null;
}
/**
* Read AT MOST ~`cap` characters of a provider error body, then cancel the
* stream β a large or slow error body must never delay the next-provider
* fallback (#4966 review). The request's own AbortSignal still bounds a
* pathological first-chunk stall.
*/
async function readBoundedErrorBody(resp: Response, cap: number): Promise<string> {
const body = resp.body;
if (!body) return '';
const reader = body.getReader();
const decoder = new TextDecoder();
let out = '';
try {
while (out.length < cap) {
const { done, value } = await reader.read();
if (done) break;
out += decoder.decode(value, { stream: true });
}
} catch { /* best-effort diagnostics only */ } finally {
try { void reader.cancel(); } catch { /* already closed */ }
}
return out.slice(0, cap);
}
export function stripThinkingTags(text: string): string {
let s = text
.replace(/<think>[\s\S]*?<\/think>/gi, '')
.replace(/<\|thinking\|>[\s\S]*?<\|\/thinking\|>/gi, '')
.replace(/<reasoning>[\s\S]*?<\/reasoning>/gi, '')
.replace(/<reflection>[\s\S]*?<\/reflection>/gi, '')
.replace(/<\|begin_of_thought\|>[\s\S]*?<\|end_of_thought\|>/gi, '')
.trim();
// Strip unterminated opening tags (no closing tag present)
s = s
.replace(/<think>[\s\S]*/gi, '')
.replace(/<\|thinking\|>[\s\S]*/gi, '')
.replace(/<reasoning>[\s\S]*/gi, '')
.replace(/<reflection>[\s\S]*/gi, '')
.replace(/<\|begin_of_thought\|>[\s\S]*/gi, '')
.trim();
return s;
}
// openrouter ahead of groq since #4944: core surfaces run DeepSeek V4 Flash
// via OpenRouter; groq (llama-3.3-70b-versatile) is the free-tier/outage
// fallback. Ollama stays first so self-hosted deployments are untouched β
// it is skipped in cloud where OLLAMA_API_URL is unset.
const PROVIDER_CHAIN = ['ollama', 'openrouter', 'groq', 'generic'] as const;
const PROVIDER_SET = new Set<string>(PROVIDER_CHAIN);
export interface LlmCallOptions {
messages: Array<{ role: string; content: string }>;
temperature?: number;
maxTokens?: number;
timeoutMs?: number;
provider?: string;
// Optional overrides. When omitted, the historic provider chain and default
// provider models remain unchanged for all existing callers.
providerOrder?: string[];
modelOverrides?: Partial<Record<LlmProviderName, string>>;
stripThinkingTags?: boolean;
validate?: (content: string) => boolean;
/** Optional text to append to the system message (index 0). Appended as \n\n---\n\n<systemAppend>. No-op if no system message at index 0. */
systemAppend?: string;
/** Caller surface tag for llm_call usage telemetry (e.g. 'classify-event'). */
stage?: string;
/** Let reasoning-capable OpenRouter models reason. Set by the reasoning profile; utility calls stay reasoning-off. */
enableReasoning?: boolean;
/**
* Treat provider-reported token-limit completions as failed attempts and
* continue the configured provider chain. Defaults off so existing callers
* retain the historic first-non-empty-completion behavior.
*/
retryOnLengthLimit?: boolean;
}
export interface LlmCallResult {
content: string;
model: string;
provider: string;
tokens: number;
/** Provider-reported completion status; null when the provider omits it. */
finishReason: string | null;
}
const TOKEN_LIMIT_FINISH_REASONS = new Set([
'length',
'max_tokens',
'max_output_tokens',
]);
const KNOWN_NON_LIMIT_FINISH_REASONS = new Set([
'stop',
'end_turn',
'tool_calls',
'function_call',
'content_filter',
'safety',
'recitation',
'blocklist',
'prohibited_content',
'spii',
'malformed_function_call',
'image_safety',
]);
function normalizeFinishReason(finishReason: string | null): string | null {
if (typeof finishReason !== 'string') return null;
const normalized = finishReason.trim().toLowerCase().replace(/[\s-]+/g, '_');
return normalized || null;
}
function isLengthLimitedCompletion(
finishReason: string | null,
completionTokens: number,
maxTokens: number,
): boolean {
const normalized = normalizeFinishReason(finishReason);
if (normalized && TOKEN_LIMIT_FINISH_REASONS.has(normalized)) return true;
if (completionTokens < maxTokens) return false;
return normalized === null || !KNOWN_NON_LIMIT_FINISH_REASONS.has(normalized);
}
function resolveProviderChain(opts: {
forcedProvider?: string;
providerOrder?: string[];
}): string[] {
if (opts.forcedProvider) return [opts.forcedProvider];
if (!Array.isArray(opts.providerOrder) || opts.providerOrder.length === 0) {
return [...PROVIDER_CHAIN];
}
const seen = new Set<string>();
const providers: string[] = [];
for (const provider of opts.providerOrder) {
if (!PROVIDER_SET.has(provider) || seen.has(provider)) continue;
seen.add(provider);
providers.push(provider);
}
return providers.length > 0 ? providers : [...PROVIDER_CHAIN];
}
function callLlmProfile(
opts: Omit<LlmCallOptions, 'providerOrder' | 'modelOverrides'>,
providerEnv: string,
modelEnv: string,
defaultProvider: LlmProviderName,
): Promise<LlmCallResult | null> {
const envProvider = process.env[providerEnv];
const provider = (envProvider && PROVIDER_SET.has(envProvider) ? envProvider : (() => {
if (envProvider) console.warn(`[llm] ${providerEnv}="${envProvider}" is not a known provider; falling back to "${defaultProvider}"`);
return defaultProvider;
})()) as LlmProviderName;
const model = process.env[modelEnv];
const remaining = PROVIDER_CHAIN.filter((p) => p !== provider);
return callLlm({
...opts,
providerOrder: [provider, ...remaining],
modelOverrides: model ? { [provider]: model } as Partial<Record<LlmProviderName, string>> : undefined,
});
}
/** Cheap/fast model for extraction and parsing tasks. Configurable via LLM_TOOL_PROVIDER / LLM_TOOL_MODEL. */
export const callLlmTool = (opts: Omit<LlmCallOptions, 'providerOrder' | 'modelOverrides'>) =>
callLlmProfile(opts, 'LLM_TOOL_PROVIDER', 'LLM_TOOL_MODEL', 'groq');
/**
* Powerful model for synthesis and reasoning tasks. Configurable via
* LLM_REASONING_PROVIDER / LLM_REASONING_MODEL. Reasoning is ON by default,
* but a caller may pass `enableReasoning: false` to use the same
* high-quality model with reasoning DISABLED β required for short-output
* stages (a 2β3 sentence brief blurb) where an actual reasoning model
* (e.g. deepseek-v4-pro) would otherwise spend its whole small max_tokens
* budget on hidden reasoning tokens and return empty content (#4983).
*/
export const callLlmReasoning = (opts: Omit<LlmCallOptions, 'providerOrder' | 'modelOverrides'>) =>
callLlmProfile({ enableReasoning: true, ...opts }, 'LLM_REASONING_PROVIDER', 'LLM_REASONING_MODEL', 'openrouter');
// enableReasoning is omitted too: the reasoning stream hardcodes it on β
// exposing the knob on the stream type would be a silent no-op for callers.
export type LlmStreamOptions = Omit<LlmCallOptions, 'stripThinkingTags' | 'validate' | 'providerOrder' | 'modelOverrides' | 'provider' | 'enableReasoning' | 'retryOnLengthLimit'> & {
/** When fired, aborts the active provider fetch and stops the stream. */
signal?: AbortSignal;
};
/**
* Streaming variant of callLlmReasoning.
* Returns a ReadableStream that emits SSE lines:
* data: {"delta":"..."} β one per content chunk
* data: {"done":true} β terminal event
* Returns null if no provider is available.
*/
export function callLlmReasoningStream(opts: LlmStreamOptions): ReadableStream<Uint8Array> {
const envProvider = process.env.LLM_REASONING_PROVIDER;
const provider = (envProvider && PROVIDER_SET.has(envProvider) ? envProvider : 'openrouter') as LlmProviderName;
const model = process.env.LLM_REASONING_MODEL;
const remaining = PROVIDER_CHAIN.filter((p) => p !== provider);
const providerOrder = [provider, ...remaining];
const modelOverrides = model ? { [provider]: model } as Partial<Record<LlmProviderName, string>> : undefined;
const {
messages: rawMessages,
temperature = 0.3,
maxTokens = 600,
timeoutMs = 90_000,
systemAppend,
signal: clientSignal,
} = opts;
let messages = rawMessages;
const firstMsg = messages[0];
if (systemAppend && firstMsg?.role === 'system') {
const sanitized = sanitizeForPrompt(systemAppend);
if (sanitized) {
messages = [
{ role: 'system', content: `${firstMsg.content}\n\n---\n\n${sanitized}` },
...messages.slice(1),
];
}
}
const enc = new TextEncoder();
let activeController: AbortController | null = null;
let streamClosed = false;
const stage = opts.stage || 'unknown';
const inputChars = promptChars(messages);
const events: LlmCallEvent[] = [];
let attemptIndex = 0;
return new ReadableStream<Uint8Array>({
async start(controller) {
const emit = (obj: Record<string, unknown>) => {
if (streamClosed) return;
controller.enqueue(enc.encode(`data: ${JSON.stringify(obj)}\n\n`));
};
const closeStream = () => {
if (streamClosed) return;
streamClosed = true;
controller.close();
};
// Flush AFTER the stream is closed so telemetry latency never delays
// the client's terminal event. Token counts are unavailable on the SSE
// path β prompt_chars + duration still attribute the spend surface.
const closeAndFlush = async () => {
closeStream();
await flushLlmEvents(events);
};
for (const providerName of providerOrder) {
if (streamClosed) break;
const creds = getProviderCredentials(providerName, {
model: modelOverrides?.[providerName as LlmProviderName],
// Streaming variant of callLlmReasoning β the reasoning profile opts in.
enableReasoning: true,
});
if (!creds) continue;
// Model gate first: it is synchronous, so a quarantined model costs
// neither a completion request nor an origin probe.
if (!isModelUsable(creds.apiUrl, creds.model)) {
console.warn(`[llm-stream:${providerName}] Model ${creds.model} quarantined, skipping`);
continue;
}
if (!(await isProviderAvailable(creds.apiUrl))) {
console.warn(`[llm-stream:${providerName}] Offline, skipping`);
continue;
}
// Per-fetch abort controller merges client signal + per-request timeout
activeController = new AbortController();
const timeoutId = setTimeout(() => activeController?.abort(), timeoutMs);
if (clientSignal?.aborted) { clearTimeout(timeoutId); break; }
clientSignal?.addEventListener('abort', () => activeController?.abort(), { once: true });
const t0 = Date.now();
const fallbackIndex = attemptIndex;
attemptIndex += 1;
const record = (ok: boolean, reason = '') => {
events.push(buildLlmCallEvent({
provider: providerName,
model: creds.model,
stage,
ok,
durationMs: Date.now() - t0,
promptChars: inputChars,
maxTokens,
fallbackIndex,
reason,
}));
};
let hasContent = false;
try {
const resp = await fetch(creds.apiUrl, {
method: 'POST',
headers: { ...creds.headers, 'User-Agent': CHROME_UA },
body: JSON.stringify({
...creds.extraBody,
model: creds.model,
messages,
temperature,
max_tokens: maxTokens,
stream: true,
}),
signal: activeController.signal,
});
// Timeout stays active β it must bound the streaming body read, not just the connection
if (resp.ok) {
// HTTP success proves the provider accepted this model even if the
// application later rejects, strips, or cannot read the payload.
recordModelSuccess(creds.apiUrl, creds.model);
}
if (!resp.ok || !resp.body) {
clearTimeout(timeoutId);
const errBody = resp.body ? await resp.text().catch(() => '') : '';
console.warn(`[llm-stream:${providerName}] HTTP ${resp.status} model=${creds.model} body=${errBody.slice(0, 300)}`);
// The body already told us whether the MODEL was rejected; feeding
// it back is what stops the next request re-sending the prompt.
recordModelFailure(creds.apiUrl, creds.model, resp.status, errBody);
record(false, `http_${resp.status}`);
continue;
}
const reader = resp.body.getReader();
const decoder = new TextDecoder();
let buf = '';
let providerDone = false;
while (!streamClosed && !providerDone) {
const { done, value } = await reader.read();
if (done) break;
buf += decoder.decode(value, { stream: true });
const lines = buf.split('\n');
buf = lines.pop() ?? '';
for (const line of lines) {
if (!line.startsWith('data: ')) continue;
const payload = line.slice(6).trim();
if (payload === '[DONE]') { providerDone = true; break; }
try {
const chunk = JSON.parse(payload) as {
choices?: Array<{ delta?: { content?: string }; finish_reason?: string }>;
};
const delta = chunk.choices?.[0]?.delta?.content;
if (delta) {
hasContent = true;
emit({ delta });
}
} catch { /* malformed chunk β skip */ }
}
}
clearTimeout(timeoutId);
if (hasContent) {
record(true);
emit({ done: true });
await closeAndFlush();
return;
}
record(false, 'empty');
} catch (err) {
clearTimeout(timeoutId);
if (hasContent) {
// Partial stream β close without done so the client sees it as truncated, not success
record(false, 'truncated');
await closeAndFlush();
return;
}
if (streamClosed) { await flushLlmEvents(events); return; }
console.warn(`[llm-stream:${providerName}] ${(err as Error).message}`);
const name = (err as Error).name;
record(false, name === 'TimeoutError' || name === 'AbortError' ? 'timeout' : 'fetch_error');
}
}
if (!streamClosed) {
emit({ error: 'llm_unavailable' });
}
await closeAndFlush();
},
cancel() {
// Client disconnected β abort the active provider fetch immediately
streamClosed = true;
activeController?.abort();
},
});
}
export async function callLlm(opts: LlmCallOptions): Promise<LlmCallResult | null> {
const {
messages: rawMessages,
temperature = 0.3,
maxTokens = 1500,
timeoutMs = 25_000,
provider: forcedProvider,
providerOrder,
modelOverrides,
stripThinkingTags: shouldStrip = true,
validate,
systemAppend,
enableReasoning = false,
retryOnLengthLimit = false,
} = opts;
let messages = rawMessages;
const firstMsg = messages[0];
if (systemAppend && firstMsg && firstMsg.role === 'system') {
const sanitized = sanitizeForPrompt(systemAppend);
if (sanitized) {
messages = [
{ role: 'system', content: `${firstMsg.content}\n\n---\n\n${sanitized}` },
...messages.slice(1),
];
}
}
const providers = resolveProviderChain({ forcedProvider, providerOrder });
const stage = opts.stage || 'unknown';
const inputChars = promptChars(messages);
const events: LlmCallEvent[] = [];
let attemptIndex = 0;
try {
for (const providerName of providers) {
const creds = getProviderCredentials(providerName, {
model: modelOverrides?.[providerName as LlmProviderName],
enableReasoning,
});
if (!creds) {
if (forcedProvider) return null;
continue;
}
// Model gate: skip a model the provider has already rejected. Runs before
// the reachability probe because it is synchronous and network-free.
if (!isModelUsable(creds.apiUrl, creds.model)) {
console.warn(`[llm:${providerName}] Model ${creds.model} quarantined, skipping`);
if (forcedProvider) return null;
continue;
}
// Health gate: skip provider if endpoint is unreachable
if (!(await isProviderAvailable(creds.apiUrl))) {
console.warn(`[llm:${providerName}] Offline, skipping`);
if (forcedProvider) return null;
continue;
}
// Skipped providers (no creds / offline) never sent the prompt, so
// only real attempts get an event and advance the fallback index.
const t0 = Date.now();
const fallbackIndex = attemptIndex;
attemptIndex += 1;
const record = (ok: boolean, extra: { reason?: string; tokensTotal?: number; tokensPrompt?: number; tokensCompletion?: number } = {}) => {
events.push(buildLlmCallEvent({
provider: providerName,
model: creds.model,
stage,
ok,
durationMs: Date.now() - t0,
promptChars: inputChars,
maxTokens,
fallbackIndex,
...extra,
}));
};
try {
const resp = await fetch(creds.apiUrl, {
method: 'POST',
headers: { ...creds.headers, 'User-Agent': CHROME_UA },
body: JSON.stringify({
...creds.extraBody,
model: creds.model,
messages,
temperature,
max_tokens: maxTokens,
}),
// #5246: DeepSeek V4 Flash is bimodal β healthy calls finish near 2s,
// while stalled calls hang to the old 25s clamp. Cut only this model's
// dead tail so the existing provider chain can reach its fallback.
signal: AbortSignal.timeout(getLlmAttemptTimeoutMs(creds.model, timeoutMs)),
});
if (!resp.ok) {
// Log a bounded body slice (like the stream path already does) β
// region-403s and provider errors are undiagnosable from the
// status code alone (#4944 U7). Bounded READ, not just bounded
// log: never consume a huge/slow error body before falling back.
const errBody = await readBoundedErrorBody(resp, 300).catch(() => '');
console.warn(`[llm:${providerName}] HTTP ${resp.status} model=${creds.model} body=${errBody}`);
// The body already told us whether the MODEL was rejected; feeding it
// back is what stops the next request re-sending the prompt.
recordModelFailure(creds.apiUrl, creds.model, resp.status, errBody);
record(false, { reason: `http_${resp.status}` });
if (forcedProvider) return null;
continue;
}
// Provider acceptance is the model-health signal. Output validation,
// token limits, and content policy are separate application concerns.
recordModelSuccess(creds.apiUrl, creds.model);
const data = (await resp.json()) as {
choices?: Array<{ message?: { content?: string }; finish_reason?: string | null }>;
usage?: { total_tokens?: number; prompt_tokens?: number; completion_tokens?: number };
};
const tokensExtra = {
tokensTotal: data.usage?.total_tokens ?? 0,
tokensPrompt: data.usage?.prompt_tokens ?? 0,
tokensCompletion: data.usage?.completion_tokens ?? 0,
};
const tokens = data.usage?.total_tokens ?? 0;
const finishReason = typeof data.choices?.[0]?.finish_reason === 'string'
? data.choices[0].finish_reason
: null;
if (retryOnLengthLimit && isLengthLimitedCompletion(
finishReason,
tokensExtra.tokensCompletion,
maxTokens,
)) {
console.warn(`[llm:${providerName}] Token-limited completion, trying next`);
record(false, { ...tokensExtra, reason: 'length' });
if (forcedProvider) return null;
continue;
}
let content = data.choices?.[0]?.message?.content?.trim() || '';
if (!content) {
record(false, { ...tokensExtra, reason: 'empty' });
if (forcedProvider) return null;
continue;
}
if (shouldStrip) {
content = stripThinkingTags(content);
if (!content) {
record(false, { ...tokensExtra, reason: 'stripped_empty' });
if (forcedProvider) return null;
continue;
}
}
// Strip markdown code fences (e.g. ```json ... ```) that some models add
content = content.replace(/^```(?:\w+)?\s*/m, '').replace(/\s*```\s*$/m, '').trim();
if (validate && !validate(content)) {
console.warn(`[llm:${providerName}] validate() rejected response, trying next`);
record(false, { ...tokensExtra, reason: 'validate_reject' });
if (forcedProvider) return null;
continue;
}
record(true, tokensExtra);
return { content, model: creds.model, provider: providerName, tokens, finishReason };
} catch (err) {
const name = (err as Error).name;
console.warn(`[llm:${providerName}] ${(err as Error).message}`);
record(false, { reason: name === 'TimeoutError' || name === 'AbortError' ? 'timeout' : 'fetch_error' });
if (forcedProvider) return null;
}
}
return null;
} finally {
await flushLlmEvents(events);
}
}
|