File size: 23,209 Bytes
ee888e1 | 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 | // @ts-check
// Regional Intelligence narrative generator. Evidence-grounded LLM synthesis
// over a deterministic RegionalSnapshot. One call per region per 6h cycle.
//
// Phase 1 PR2 β fills in the `narrative` field that Phase 0 left as empty
// stubs, and populates SnapshotMeta.narrative_provider/narrative_model.
//
// Design notes:
// - Single structured-JSON call per region (cheaper + better coherence
// than 6 per-section calls). Parsed into 6 sections + watch_items[].
// - Skips the 'global' region entirely (too broad to be useful).
// - Ship-empty on any LLM failure: the snapshot is still valuable without
// the narrative, and the diff engine surfaces state changes regardless.
// - Evidence-grounded: each section's evidence_ids MUST be a subset of
// the evidence IDs already computed by collectEvidence(). Unknown IDs
// are silently filtered so a halluciΒnated ID never leaks through.
// - Provider chain mirrors seed-insights.mjs / seed-forecasts.mjs:
// Groq β OpenRouter (Gemini Flash). Ollama skipped: the narrative call
// runs on Railway which has no local model.
// - `callLlm` is dependency-injected so unit tests can exercise the full
// prompt + parser without network.
import { createHash } from 'node:crypto';
import { extractFirstJsonObject, cleanJsonText } from '../_llm-json.mjs';
import { withRetry, httpRetryError, createLlmBudgetError, isLlmBudgetError } from '../_seed-utils.mjs';
import { buildLlmCallEvent, emitLlmEvents } from '../lib/llm-telemetry.cjs';
const CHROME_UA = 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36';
const NARRATIVE_MAX_TOKENS = 900;
const NARRATIVE_TEMPERATURE = 0.3;
// Bounded retry for the per-region narrative call. One call per region per 6h
// cycle under the regional bundle's section timeout: honor a provider's
// Retry-After (429/503) instead of dropping straight to the next provider, but
// never sleep/fetch past the remaining per-call budget.
const NARRATIVE_LLM_MAX_RETRIES = 2;
const NARRATIVE_LLM_RETRY_BASE_MS = 1_000;
const NARRATIVE_LLM_RETRY_AFTER_MAX_MS = 10_000;
const NARRATIVE_LLM_CALL_BUDGET_MS = 45_000;
const NARRATIVE_LLM_CALL_BUDGET_GUARD_MS = 5_000;
let narrativeFetchForTests = null;
export function __setNarrativeTransportForTests(overrides = null) {
narrativeFetchForTests = typeof overrides?.fetch === 'function' ? overrides.fetch : null;
}
const MAX_ACTORS_IN_PROMPT = 5;
const MAX_EVIDENCE_IN_PROMPT = 15;
const MAX_TRANSMISSIONS_IN_PROMPT = 5;
const MAX_WATCH_ITEMS = 3;
/**
* Provider chain. Order matters: first provider with a configured env var wins.
*/
const DEFAULT_PROVIDERS = [
{
name: 'openrouter',
envKey: 'OPENROUTER_API_KEY',
apiUrl: 'https://openrouter.ai/api/v1/chat/completions',
model: 'deepseek/deepseek-v4-flash',
timeout: 30_000,
headers: (key) => ({
Authorization: `Bearer ${key}`,
'Content-Type': 'application/json',
'HTTP-Referer': 'https://worldmonitor.app',
'X-Title': 'World Monitor',
'User-Agent': CHROME_UA,
}),
extraBody: { reasoning: { enabled: false } },
},
{
name: 'groq',
envKey: 'GROQ_API_KEY',
apiUrl: 'https://api.groq.com/openai/v1/chat/completions',
model: 'llama-3.3-70b-versatile',
timeout: 20_000,
headers: (key) => ({
Authorization: `Bearer ${key}`,
'Content-Type': 'application/json',
'User-Agent': CHROME_UA,
}),
},
];
/**
* Canonical empty narrative. Matches RegionalNarrative shape.
* @returns {import('../../shared/regions.types.js').RegionalNarrative}
*/
export function emptyNarrative() {
return {
situation: { text: '', evidence_ids: [] },
balance_assessment: { text: '', evidence_ids: [] },
outlook_24h: { text: '', evidence_ids: [] },
outlook_7d: { text: '', evidence_ids: [] },
outlook_30d: { text: '', evidence_ids: [] },
watch_items: [],
};
}
/**
* Return the evidence subset that is actually rendered into the prompt.
* Callers should use this same subset when deriving the valid-evidence-ID
* whitelist for parseNarrativeJson β otherwise the parser could accept
* citations to IDs the model never saw (P2 review finding on #2960).
*
* @param {import('../../shared/regions.types.js').EvidenceItem[]} evidence
* @returns {import('../../shared/regions.types.js').EvidenceItem[]}
*/
export function selectPromptEvidence(evidence) {
if (!Array.isArray(evidence)) return [];
return evidence.slice(0, MAX_EVIDENCE_IN_PROMPT);
}
/**
* Build the evidence-grounded prompt. Pure β no network.
*
* `evidence` is rendered as-is. Callers that want the prompt-visible
* cap should call `selectPromptEvidence()` first so the same subset
* flows into both the prompt and the parser's evidence whitelist.
*
* @param {{id: string, label: string, forecastLabel: string}} region
* @param {import('../../shared/regions.types.js').RegionalSnapshot} snapshot
* @param {import('../../shared/regions.types.js').EvidenceItem[]} evidence
* @returns {{ systemPrompt: string, userPrompt: string }}
*/
export function buildNarrativePrompt(region, snapshot, evidence) {
const topActors = (snapshot.actors ?? [])
.slice(0, MAX_ACTORS_IN_PROMPT)
.map((a) => `${a.name} (${a.role}, leverage=${a.leverage_score.toFixed(2)})`)
.join(', ');
const horizonSummary = (snapshot.scenario_sets ?? [])
.map((set) => {
const dominant = [...(set.lanes ?? [])].sort((a, b) => b.probability - a.probability)[0];
return dominant
? `${set.horizon}: ${dominant.name} (${Math.round(dominant.probability * 100)}%)`
: `${set.horizon}: (no lanes)`;
})
.join(' | ');
const topTransmissions = (snapshot.transmission_paths ?? [])
.slice(0, MAX_TRANSMISSIONS_IN_PROMPT)
.map((t) => `${t.mechanism} via ${t.corridor_id || t.start} (conf=${t.confidence.toFixed(2)})`)
.join('; ');
const activeTriggers = (snapshot.triggers?.active ?? [])
.map((t) => t.id)
.join(', ');
const evidenceLines = (evidence ?? []).map((e) => {
const summary = (e.summary ?? '').slice(0, 180);
const conf = typeof e.confidence === 'number' ? e.confidence.toFixed(2) : '0.00';
return `- ${e.id} [${e.type}, conf=${conf}]: ${summary}`;
});
const evidenceBlock = evidenceLines.length > 0
? evidenceLines.join('\n')
: '(no evidence available β reason over the balance vector alone)';
const balance = snapshot.balance;
const balanceLine = [
`coercive=${balance.coercive_pressure.toFixed(2)}`,
`fragility=${balance.domestic_fragility.toFixed(2)}`,
`capital=${balance.capital_stress.toFixed(2)}`,
`energy_vuln=${balance.energy_vulnerability.toFixed(2)}`,
`alliance=${balance.alliance_cohesion.toFixed(2)}`,
`maritime=${balance.maritime_access.toFixed(2)}`,
`energy_lev=${balance.energy_leverage.toFixed(2)}`,
`net=${balance.net_balance.toFixed(2)}`,
].join(' ');
const systemPrompt = [
`You are a senior geopolitical analyst producing a regional intelligence brief.`,
`Today is ${new Date().toISOString().split('T')[0]}.`,
``,
`HARD RULES:`,
`- Output ONLY a single JSON object matching the schema below. No prose, no markdown, no code fences.`,
`- Each text field: 1β2 concise sentences, under 280 characters, no bullet points.`,
`- Every evidence_ids entry MUST be one of the IDs listed in the EVIDENCE block. Never invent IDs.`,
`- Ground claims in the evidence and the balance vector. Do not speculate beyond them.`,
`- Use present tense for situation/balance_assessment. Use hedged language for outlooks.`,
`- Neutral, analytical tone. No dramatization, no policy prescriptions.`,
``,
`SCHEMA:`,
`{`,
` "situation": { "text": "...", "evidence_ids": ["..."] },`,
` "balance_assessment": { "text": "...", "evidence_ids": ["..."] },`,
` "outlook_24h": { "text": "...", "evidence_ids": ["..."] },`,
` "outlook_7d": { "text": "...", "evidence_ids": ["..."] },`,
` "outlook_30d": { "text": "...", "evidence_ids": ["..."] },`,
` "watch_items": [ { "text": "...", "evidence_ids": ["..."] } ]`,
`}`,
``,
`watch_items: up to ${MAX_WATCH_ITEMS} specific indicators the analyst should monitor.`,
].join('\n');
const userPrompt = [
`REGION: ${region.label} (${region.id})`,
``,
`REGIME: ${snapshot.regime?.label ?? 'unknown'}`,
`BALANCE: ${balanceLine}`,
`TOP ACTORS: ${topActors || '(none)'}`,
`SCENARIO LEADS: ${horizonSummary || '(none)'}`,
`TOP TRANSMISSIONS: ${topTransmissions || '(none)'}`,
`ACTIVE TRIGGERS: ${activeTriggers || '(none)'}`,
``,
`EVIDENCE:`,
evidenceBlock,
``,
`Produce the JSON object now.`,
].join('\n');
return { systemPrompt, userPrompt };
}
/**
* Validate + coerce a single NarrativeSection from raw parsed JSON.
*
* @param {unknown} raw
* @param {Set<string>} validEvidenceIds
* @returns {import('../../shared/regions.types.js').NarrativeSection}
*/
function coerceSection(raw, validEvidenceIds) {
if (!raw || typeof raw !== 'object') return { text: '', evidence_ids: [] };
const r = /** @type {Record<string, unknown>} */ (raw);
const text = typeof r.text === 'string' ? r.text.trim() : '';
const evidenceIds = Array.isArray(r.evidence_ids)
? r.evidence_ids
.filter((id) => typeof id === 'string' && validEvidenceIds.has(id))
: [];
return { text, evidence_ids: evidenceIds };
}
/**
* Parse the LLM JSON response into a RegionalNarrative. Filters any
* hallucinated evidence IDs against the set the caller provided.
* Returns { narrative, valid: false } on unparseable input so the caller
* can ship an empty narrative instead.
*
* @param {string} text
* @param {string[]} validEvidenceIds
* @returns {{ narrative: import('../../shared/regions.types.js').RegionalNarrative, valid: boolean }}
*/
export function parseNarrativeJson(text, validEvidenceIds) {
const validSet = new Set(validEvidenceIds);
if (!text || typeof text !== 'string') {
return { narrative: emptyNarrative(), valid: false };
}
let parsed;
try {
// Try direct parse first (LLM output is often wrapped in fences).
parsed = JSON.parse(cleanJsonText(text));
} catch {
const extracted = extractFirstJsonObject(text);
if (!extracted) return { narrative: emptyNarrative(), valid: false };
try {
parsed = JSON.parse(extracted);
} catch {
return { narrative: emptyNarrative(), valid: false };
}
}
if (!parsed || typeof parsed !== 'object') {
return { narrative: emptyNarrative(), valid: false };
}
const p = /** @type {Record<string, unknown>} */ (parsed);
const watch = Array.isArray(p.watch_items)
? p.watch_items.slice(0, MAX_WATCH_ITEMS).map((w) => coerceSection(w, validSet))
: [];
const narrative = {
situation: coerceSection(p.situation, validSet),
balance_assessment: coerceSection(p.balance_assessment, validSet),
outlook_24h: coerceSection(p.outlook_24h, validSet),
outlook_7d: coerceSection(p.outlook_7d, validSet),
outlook_30d: coerceSection(p.outlook_30d, validSet),
watch_items: watch,
};
// Require at least one non-empty section to count as valid. Everything
// else being empty suggests a garbage LLM response we should discard.
const hasAnyText =
narrative.situation.text.length > 0 ||
narrative.balance_assessment.text.length > 0 ||
narrative.outlook_24h.text.length > 0 ||
narrative.outlook_7d.text.length > 0 ||
narrative.outlook_30d.text.length > 0 ||
narrative.watch_items.some((w) => w.text.length > 0);
return { narrative, valid: hasAnyText };
}
/**
* Real provider-chain caller. Walks DEFAULT_PROVIDERS in order, returning
* the first response that passes the optional `validate` predicate.
* Respects per-provider env gating and timeout.
*
* Callers should pass a `validate` that checks whether the text parses to
* a usable output. Without it, a single provider returning prose or
* truncated JSON would short-circuit the fallback chain β which was the
* P2 finding on #2960.
*
* The returned `model` field reflects what the API actually ran
* (`json.model`), falling back to the provider's declared default. Some
* providers resolve aliases or route to a different concrete model, and
* persisted metadata should report the truth.
*
* @param {{ systemPrompt: string, userPrompt: string }} prompt
* @param {{ validate?: (text: string) => boolean }} [opts]
* @returns {Promise<{ text: string, provider: string, model: string } | null>}
*/
export async function callLlmDefault({ systemPrompt, userPrompt }, opts = {}) {
const validate = opts.validate;
const narrativeFetch = narrativeFetchForTests || ((...args) => globalThis.fetch(...args));
const callBudgetMs = Number.isFinite(opts.callBudgetMs)
? Math.max(0, Math.floor(opts.callBudgetMs))
: NARRATIVE_LLM_CALL_BUDGET_MS;
const retryDelayMs = Number.isFinite(opts.retryDelayMs)
? Math.max(0, Math.floor(opts.retryDelayMs))
: NARRATIVE_LLM_RETRY_BASE_MS;
const budgetStartedAtMs = Date.now();
const usableBudgetMs = () => Math.max(0, budgetStartedAtMs + callBudgetMs - Date.now() - NARRATIVE_LLM_CALL_BUDGET_GUARD_MS);
// llm_call telemetry (#4944 U5): one event per provider OUTCOME (the
// withRetry duration covers in-provider retries), unified with the
// Vercel-side stream via scripts/lib/llm-telemetry.cjs.
const promptChars = (systemPrompt?.length ?? 0) + (userPrompt?.length ?? 0);
const events = [];
let attemptIndex = 0;
for (const provider of DEFAULT_PROVIDERS) {
const envVal = process.env[provider.envKey];
if (!envVal) continue;
const t0 = Date.now();
const record = (ok, extra = {}) => {
events.push(buildLlmCallEvent({
provider: provider.name, model: provider.model, stage: 'regional-narrative', ok,
durationMs: Date.now() - t0, promptChars, maxTokens: NARRATIVE_MAX_TOKENS,
fallbackIndex: attemptIndex++,
...extra,
}));
};
try {
const resp = await withRetry(async () => {
const usable = usableBudgetMs();
if (usable <= 0) throw createLlmBudgetError('narrative llm budget exhausted');
const response = await narrativeFetch(provider.apiUrl, {
method: 'POST',
headers: provider.headers(envVal),
body: JSON.stringify({
model: provider.model,
messages: [
{ role: 'system', content: systemPrompt },
{ role: 'user', content: userPrompt },
],
max_tokens: NARRATIVE_MAX_TOKENS,
temperature: NARRATIVE_TEMPERATURE,
response_format: { type: 'json_object' },
...(provider.extraBody || {}),
}),
signal: AbortSignal.timeout(Math.max(1, Math.min(provider.timeout, usable))),
});
if (!response.ok) {
throw httpRetryError(response, { maxRetryAfterMs: NARRATIVE_LLM_RETRY_AFTER_MAX_MS, capMs: usableBudgetMs() });
}
return response;
}, NARRATIVE_LLM_MAX_RETRIES, retryDelayMs);
const json = /** @type {any} */ (await resp.json());
const usage = {
tokensTotal: json?.usage?.total_tokens ?? 0,
tokensPrompt: json?.usage?.prompt_tokens ?? 0,
tokensCompletion: json?.usage?.completion_tokens ?? 0,
};
const text = json?.choices?.[0]?.message?.content;
if (typeof text !== 'string' || text.trim().length === 0) {
console.warn(`[narrative] ${provider.name}: empty response`);
record(false, { ...usage, reason: 'empty' });
continue;
}
const trimmed = text.trim();
if (validate && !validate(trimmed)) {
console.warn(`[narrative] ${provider.name}: response failed validation, trying next provider`);
record(false, { ...usage, reason: 'validate_reject' });
continue;
}
// Prefer the model the provider actually ran over the requested alias.
const actualModel = typeof json?.model === 'string' && json.model.length > 0
? json.model
: provider.model;
record(true, { ...usage, model: actualModel });
void emitLlmEvents(events); // fire-and-forget: telemetry never delays the return path
return { text: trimmed, provider: provider.name, model: actualModel };
} catch (err) {
const msg = err instanceof Error ? err.message : String(err);
console.warn(`[narrative] ${provider.name}: ${msg}`);
const httpMatch = /HTTP (\d{3})/.exec(msg);
record(false, {
reason: isLlmBudgetError(err) ? 'budget_exhausted'
: err?.name === 'TimeoutError' || err?.name === 'AbortError' ? 'timeout'
: httpMatch ? `http_${httpMatch[1]}`
: 'fetch_error',
});
// Budget spent β give up rather than burning the next provider's timeout.
if (isLlmBudgetError(err)) {
void emitLlmEvents(events); // fire-and-forget: telemetry never delays the return path
return null;
}
}
}
void emitLlmEvents(events); // fire-and-forget: telemetry never delays the return path
return null;
}
/**
* Main entry: generate a narrative for one region. Ship-empty on any failure.
*
* Evidence is capped to `MAX_EVIDENCE_IN_PROMPT` BEFORE prompt construction,
* and the same cap bounds the parser's valid-evidence-ID whitelist, so
* citations can only reference items the model actually saw.
*
* The injected `callLlm` receives a `validate` callback that runs
* `parseNarrativeJson` on each provider's response; providers returning
* prose, truncated JSON, or all-empty objects fall through to the next
* provider instead of short-circuiting the whole chain.
*
* @param {{ id: string, label: string, forecastLabel: string }} region
* @param {import('../../shared/regions.types.js').RegionalSnapshot} snapshot
* @param {import('../../shared/regions.types.js').EvidenceItem[]} evidence
* @param {{ callLlm?: (prompt: { systemPrompt: string, userPrompt: string }, opts?: { validate?: (text: string) => boolean }) => Promise<{ text: string, provider: string, model: string } | null> }} [opts]
* @returns {Promise<{
* narrative: import('../../shared/regions.types.js').RegionalNarrative,
* provider: string,
* model: string,
* }>}
*/
export async function generateRegionalNarrative(region, snapshot, evidence, opts = {}) {
// Global region is a catch-all; narratives aren't meaningful there.
if (region.id === 'global') {
return { narrative: emptyNarrative(), provider: '', model: '' };
}
const callLlm = opts.callLlm ?? callLlmDefault;
const cache = opts.cache ?? defaultNarrativeCache();
// Slice evidence once so the prompt and the parser's whitelist agree on
// exactly which IDs are citable. See selectPromptEvidence docstring.
const promptEvidence = selectPromptEvidence(evidence);
const prompt = buildNarrativePrompt(region, snapshot, promptEvidence);
const validEvidenceIds = promptEvidence.map((e) => e.id);
// Prompt-hash cache (#4896 item 1): the LLM call used to fire before any
// content-identity check, so byte-identical world state regenerated the
// same ~900-token narrative every 6h run, and same-15min-bucket re-runs
// burned it just for persistSnapshot's dedup to discard the result. The
// prompt's only volatile input is a day-granular date, so identical world
// state within a day hashes to the same key.
const promptText = typeof prompt === 'string' ? prompt : JSON.stringify(prompt);
const cacheKey = `${NARRATIVE_CACHE_PREFIX}${region.id}:${createHash('sha256').update(promptText).digest('hex').slice(0, 16)}`;
try {
const hit = await cache.get(cacheKey);
if (hit && typeof hit === 'object' && hit.narrative && typeof hit.narrative === 'object') {
console.log(`[narrative] ${region.id}: prompt-hash cache hit, skipping LLM`);
return { narrative: hit.narrative, provider: 'cache', model: typeof hit.model === 'string' ? hit.model : '' };
}
} catch { /* cache is best-effort β fall through to live generation */ }
// Validator for the default provider-chain caller: a response is
// acceptable iff parseNarrativeJson returns valid=true against the
// prompt-visible evidence set.
const validate = (text) => parseNarrativeJson(text, validEvidenceIds).valid;
let result;
try {
result = await callLlm(prompt, { validate });
} catch (err) {
const msg = err instanceof Error ? err.message : String(err);
console.warn(`[narrative] ${region.id}: callLlm threw: ${msg}`);
return { narrative: emptyNarrative(), provider: '', model: '' };
}
if (!result) {
console.warn(`[narrative] ${region.id}: all providers failed, shipping empty narrative`);
return { narrative: emptyNarrative(), provider: '', model: '' };
}
const { narrative, valid } = parseNarrativeJson(result.text, validEvidenceIds);
if (!valid) {
console.warn(`[narrative] ${region.id}: JSON parse invalid, shipping empty narrative`);
return { narrative: emptyNarrative(), provider: '', model: '' };
}
// Only VALID parsed narratives feed the cache β an empty/garbage response
// must never be pinned for the TTL.
try {
await cache.set(cacheKey, { narrative, model: result.model }, NARRATIVE_CACHE_TTL_SEC);
} catch { /* cache write failures don't matter */ }
return { narrative, provider: result.provider, model: result.model };
}
// ββ Prompt-hash narrative cache plumbing (#4896 item 1) ββββββββββββββββββββ
// v1 β v2 (2026-07-06, #4944 U6): narrative model moved to deepseek-v4-flash;
// the prompt hash is not model-sensitive, so retire old-model rows explicitly.
const NARRATIVE_CACHE_PREFIX = 'intelligence:narrative-cache:v2:';
const NARRATIVE_CACHE_TTL_SEC = 86_400;
function defaultNarrativeCache() {
// Read env directly β getRedisCredentials() process.exit(1)s when creds
// are missing, which would kill the test runner (and any credless local
// run) the moment the generator touches the cache. No creds β no cache,
// generation proceeds exactly as before this cache existed.
return {
async get(key) {
const url = process.env.UPSTASH_REDIS_REST_URL;
const token = process.env.UPSTASH_REDIS_REST_TOKEN;
if (!url || !token) return null;
const resp = await fetch(`${url}/get/${encodeURIComponent(key)}`, {
headers: { Authorization: `Bearer ${token}` },
signal: AbortSignal.timeout(3_000),
});
if (!resp.ok) return null;
const data = await resp.json();
return data?.result ? JSON.parse(data.result) : null;
},
async set(key, value, ttlSeconds) {
const url = process.env.UPSTASH_REDIS_REST_URL;
const token = process.env.UPSTASH_REDIS_REST_TOKEN;
if (!url || !token) return;
await fetch(url, {
method: 'POST',
headers: { Authorization: `Bearer ${token}`, 'Content-Type': 'application/json' },
body: JSON.stringify(['SET', key, JSON.stringify(value), 'EX', String(ttlSeconds)]),
signal: AbortSignal.timeout(3_000),
});
},
};
}
|