File size: 23,762 Bytes
3464008 | 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 | /**
* Internal endpoint β enriches a brief story's `whyMatters` field with
* live analyst context + LLM.
*
* POST /api/internal/brief-why-matters
*
* Internal-only. Auth via `Authorization: Bearer $RELAY_SHARED_SECRET`
* (same secret Railway crons already use). Not Pro-gated, no CORS.
*
* Body:
* {
* story: {
* headline: string, 1..400
* source: string, 1..120
* threatLevel: 'critical' | 'high' | 'medium' | 'low'
* category: string, 1..80 (free-form)
* country: string, 0..80 (full name, ISO2, 'Global', or empty)
* }
* }
*
* Response (200):
* {
* whyMatters: string | null
* source: 'cache' | 'analyst' | 'gemini'
* producedBy: 'analyst' | 'gemini' | null
* shadow?: { analyst: string | null, gemini: string | null }
* }
*
* 400 on invalid body, 401 on bad auth, 500 on unexpected.
*
* Architecture note: this endpoint calls an LLM from Vercel edge, which
* is consistent with /api/chat-analyst (both are analyst flows). The
* "Vercel reads only" convention from memory is for data-seeder flows
* and does not apply here.
*/
// Regions pinned (#4944 U7): both whyMatters paths reach OpenRouter β LLM
// calls from restricted-region edge nodes fail with geo-keyed 403s. Mirrors
// api/news/v1/[rpc].ts and api/intelligence/v1/[rpc].ts.
export const config = { runtime: 'edge', regions: ['iad1', 'lhr1', 'fra1', 'sfo1'] };
import { authenticateInternalRequest } from '../../server/_shared/internal-auth';
import { normalizeCountryToIso2 } from '../../server/_shared/country-normalize';
import { assembleBriefStoryContext } from '../../server/worldmonitor/intelligence/v1/brief-story-context';
import {
buildAnalystWhyMattersPrompt,
sanitizeStoryFields,
} from '../../server/worldmonitor/intelligence/v1/brief-why-matters-prompt';
import { callLlm } from '../../server/_shared/llm';
import { readRawJsonFromUpstash, setCachedData, redisPipeline } from '../_upstash-json.js';
// @ts-expect-error β JS module, no declaration file
import { captureSilentError } from '../_sentry-edge.js';
import {
buildWhyMattersUserPrompt,
hashBriefStory,
hasTerminalPunctuation,
parseWhyMatters,
parseWhyMattersV2,
} from '../../shared/brief-llm-core.js';
// ββ Env knobs (read at request entry so Railway/Vercel flips take effect
// on the next invocation without a redeploy) βββββββββββββββββββββββββββ
function readConfig(env: Record<string, string | undefined> = process.env as Record<string, string | undefined>): {
primary: 'analyst' | 'gemini';
invalidPrimaryRaw: string | null;
shadowEnabled: boolean;
sampleHardRoll: (hash16: string) => boolean;
invalidSamplePctRaw: string | null;
} {
// PRIMARY: default 'analyst'. Unknown value β 'gemini' (stable path) + warn.
const rawPrimary = (env.BRIEF_WHY_MATTERS_PRIMARY ?? '').trim().toLowerCase();
let primary: 'analyst' | 'gemini';
let invalidPrimaryRaw: string | null = null;
if (rawPrimary === '' || rawPrimary === 'analyst') {
primary = 'analyst';
} else if (rawPrimary === 'gemini') {
primary = 'gemini';
} else {
primary = 'gemini';
invalidPrimaryRaw = rawPrimary;
}
// SHADOW: opt-in. Only exactly '1' enables. The original default-on
// rollout ran BOTH the analyst and gemini paths on every cache miss and
// silently kept doubling gemini spend after the comparison window ended
// (#4893) β a fresh deploy must never pay 2Γ unless someone asked for it.
const shadowEnabled = env.BRIEF_WHY_MATTERS_SHADOW === '1';
// SAMPLE_PCT: default 100. Invalid/out-of-range β 100 + warn.
const rawSample = env.BRIEF_WHY_MATTERS_SHADOW_SAMPLE_PCT;
let samplePct = 100;
let invalidSamplePctRaw: string | null = null;
if (rawSample !== undefined && rawSample !== '') {
const parsed = Number.parseInt(rawSample, 10);
if (Number.isInteger(parsed) && parsed >= 0 && parsed <= 100 && String(parsed) === rawSample.trim()) {
samplePct = parsed;
} else {
invalidSamplePctRaw = rawSample;
}
}
// Deterministic per-hash sampling so the same story takes the same
// decision across retries inside a rollout window.
const sampleHardRoll = (hash16: string): boolean => {
if (samplePct >= 100) return true;
if (samplePct <= 0) return false;
const bucket = Number.parseInt(hash16.slice(0, 8), 16) % 100;
return bucket < samplePct;
};
return { primary, invalidPrimaryRaw, shadowEnabled, sampleHardRoll, invalidSamplePctRaw };
}
// ββ TTLs ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
const WHY_MATTERS_TTL_SEC = 6 * 60 * 60; // 6h
const SHADOW_TTL_SEC = 7 * 24 * 60 * 60; // 7d
// whyMatters is a 1β2 sentence editorial blurb β the fast utility model, not
// the reasoning tier. Pinning it here DECOUPLES the stage from
// LLM_REASONING_MODEL: the U3 flip to deepseek-v4-pro dragged this stage onto
// a 6β10s reasoning model (#4983); flash serves it at ~1.6β2.4s. openrouter
// primary, groq-70B fallback if openrouter is down. Reasoning stays off
// (callLlm default). Both whyMatters paths share this route.
const WHY_MATTERS_PROVIDER_ORDER = ['openrouter', 'groq'];
const WHY_MATTERS_MODEL_OVERRIDES = { openrouter: 'deepseek/deepseek-v4-flash' } as const;
// ββ Validation ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
const VALID_THREAT_LEVELS = new Set(['critical', 'high', 'medium', 'low']);
// Bumped body cap to 8 KB: v2 optionally carries `story.description`
// (up to 1000 chars) in addition to the other fields, which can push
// worst-case payloads past the old 4 KB cap under UTF-8 expansion.
const MAX_BODY_BYTES = 8192;
const CAPS = {
headline: 400,
source: 120,
category: 80,
country: 80,
description: 1000,
};
interface StoryPayload {
headline: string;
source: string;
threatLevel: string;
category: string;
country: string;
/** Optional β gives the LLM a sentence of story context beyond the headline. */
description?: string;
}
type ValidationOk = { ok: true; story: StoryPayload };
type ValidationErr = { ok: false; status: number; error: string };
function json(body: unknown, status: number): Response {
return new Response(JSON.stringify(body), {
status,
headers: { 'Content-Type': 'application/json' },
});
}
function validateStoryBody(raw: unknown): ValidationOk | ValidationErr {
if (!raw || typeof raw !== 'object') {
return { ok: false, status: 400, error: 'body must be an object' };
}
const storyRaw = (raw as { story?: unknown }).story;
if (!storyRaw || typeof storyRaw !== 'object') {
return { ok: false, status: 400, error: 'body.story must be an object' };
}
const s = storyRaw as Record<string, unknown>;
// Required non-empty strings with length caps.
for (const field of ['headline', 'source', 'category'] as const) {
const v = s[field];
if (typeof v !== 'string' || v.length === 0) {
return { ok: false, status: 400, error: `story.${field} must be a non-empty string` };
}
if (v.length > CAPS[field]) {
return { ok: false, status: 400, error: `story.${field} exceeds ${CAPS[field]} chars` };
}
}
// threatLevel β strict enum matching brief-render.js:286 VALID_THREAT_LEVELS.
if (typeof s.threatLevel !== 'string' || !VALID_THREAT_LEVELS.has(s.threatLevel)) {
return {
ok: false,
status: 400,
error: `story.threatLevel must be one of critical|high|medium|low`,
};
}
// country β optional; string with cap when provided.
let country = '';
if (s.country !== undefined && s.country !== null) {
if (typeof s.country !== 'string') {
return { ok: false, status: 400, error: 'story.country must be a string' };
}
if (s.country.length > CAPS.country) {
return { ok: false, status: 400, error: `story.country exceeds ${CAPS.country} chars` };
}
country = s.country;
}
// description β optional; when present, flows into the analyst prompt
// so the LLM has grounded story context beyond the headline.
let description: string | undefined;
if (s.description !== undefined && s.description !== null) {
if (typeof s.description !== 'string') {
return { ok: false, status: 400, error: 'story.description must be a string' };
}
if (s.description.length > CAPS.description) {
return { ok: false, status: 400, error: `story.description exceeds ${CAPS.description} chars` };
}
if (s.description.length > 0) description = s.description;
}
return {
ok: true,
story: {
headline: s.headline as string,
source: s.source as string,
threatLevel: s.threatLevel,
category: s.category as string,
country,
...(description ? { description } : {}),
},
};
}
// ββ LLM paths βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function rejectLengthLimitedCompletion(path: 'analyst' | 'gemini', finishReason: string | null): boolean {
if (finishReason !== 'length') return false;
console.warn(`[brief-why-matters] ${path} completion_reject reason=length`);
return true;
}
async function runAnalystPath(story: StoryPayload, iso2: string | null): Promise<string | null> {
try {
const context = await assembleBriefStoryContext({ iso2, category: story.category });
const { system, user, policyLabel } = buildAnalystWhyMattersPrompt(story, context);
// One line per call so we can verify in Vercel logs that humanitarian
// / aviation stories are NOT seeing marketData, without dumping the
// full prompt (which would include upstream-provided text).
console.log(
`[brief-why-matters] analyst gate policy=${policyLabel} category="${story.category}" promptLen=${user.length}`,
);
const result = await callLlm({
messages: [
{ role: 'system', content: system },
{ role: 'user', content: user },
],
// v2 prompt is 1β2 sentences / 25β40 words. maxTokens stays generous
// (well above the ~60 tokens a 40-word blurb needs) as deliberate
// headroom so a completion is never clipped mid-sentence (#5168).
maxTokens: 260,
temperature: 0.4,
timeoutMs: 15_000,
stage: 'brief-why-matters-analyst',
// Fast utility model (deepseek-v4-flash), reasoning off β see the
// WHY_MATTERS_* constants above. Decoupled from LLM_REASONING_MODEL.
providerOrder: WHY_MATTERS_PROVIDER_ORDER,
modelOverrides: WHY_MATTERS_MODEL_OVERRIDES,
// A provider's explicit token-limit signal is deterministic, so retry
// the next provider in-request. The parser remains post-call because
// parse rejection is ambiguous and should not trigger duplicate spend.
retryOnLengthLimit: true,
// Note: no `validate` option. The post-call parseWhyMattersV2
// check below handles rejection. Using validate inside
// callLlm would walk the provider chain on parse-reject,
// causing duplicate openrouter billings (see todo 245).
});
if (!result) return null;
if (rejectLengthLimitedCompletion('analyst', result.finishReason)) return null;
// v2 parser accepts multi-sentence output + rejects preamble /
// leaked section labels and private forecast percentages. Keep public
// story grounding separate so sourced figures remain publishable.
// Analyst path ONLY β gemini path stays on v1.
return parseWhyMattersV2(result.content, {
publicStory: {
headline: story.headline,
description: story.description,
source: story.source,
},
privateForecasts: context.forecasts,
});
} catch (err) {
console.warn(`[brief-why-matters] analyst path failed: ${err instanceof Error ? err.message : String(err)}`);
// Nested helper called outside the request's `ctx.waitUntil` chain
// (analyst/gemini paths run via Promise.allSettled). Await keeps the
// helper's own promise pending until Sentry delivery completes,
// capped by the 2s fetch timeout in `_sentry-common.js`.
await captureSilentError(err, { tags: { route: 'api/internal/brief-why-matters', step: 'analyst-path', severity: 'warn' } });
return null;
}
}
async function runGeminiPath(story: StoryPayload): Promise<string | null> {
try {
// Sanitize before the edge-safe prompt builder sees any field β
// defense-in-depth against prompt injection even under a valid
// RELAY_SHARED_SECRET caller (consistent with the analyst path).
const { system, user } = buildWhyMattersUserPrompt(sanitizeStoryFields(story));
const result = await callLlm({
messages: [
{ role: 'system', content: system },
{ role: 'user', content: user },
],
maxTokens: 120,
temperature: 0.4,
timeoutMs: 10_000,
stage: 'brief-why-matters-gemini',
// Fast utility model (deepseek-v4-flash), reasoning off β see the
// WHY_MATTERS_* constants above. Decoupled from LLM_REASONING_MODEL.
providerOrder: WHY_MATTERS_PROVIDER_ORDER,
modelOverrides: WHY_MATTERS_MODEL_OVERRIDES,
// Match the analyst path: retry only deterministic token-limit signals,
// while leaving prose-shape validation outside the provider loop.
retryOnLengthLimit: true,
// Note: no `validate` option. The post-call parseWhyMatters check
// below handles rejection by returning null. Using validate inside
// callLlm would walk the provider chain on parse-reject,
// causing duplicate openrouter billings when only one provider is
// configured in prod. See todo 245.
});
if (!result) return null;
if (rejectLengthLimitedCompletion('gemini', result.finishReason)) return null;
return parseWhyMatters(result.content);
} catch (err) {
console.warn(`[brief-why-matters] gemini path failed: ${err instanceof Error ? err.message : String(err)}`);
await captureSilentError(err, { tags: { route: 'api/internal/brief-why-matters', step: 'gemini-path', severity: 'warn' } });
return null;
}
}
// ββ Cache envelope ββββββββββββββββββββββββββββββββββββββββββββββββββββ
interface WhyMattersEnvelope {
whyMatters: string;
producedBy: 'analyst' | 'gemini';
at: string; // ISO8601
}
function isEnvelope(v: unknown): v is WhyMattersEnvelope {
if (!v || typeof v !== 'object') return false;
const e = v as Record<string, unknown>;
return (
typeof e.whyMatters === 'string' &&
hasTerminalPunctuation(e.whyMatters) &&
(e.producedBy === 'analyst' || e.producedBy === 'gemini') &&
typeof e.at === 'string'
);
}
// ββ Handler βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// Vercel Edge passes an execution context as the 2nd argument with
// `waitUntil(promise)` to keep background work alive past the response
// return. Fire-and-forget without it is unreliable on Edge β the isolate
// can be frozen mid-write. Optional to stay compatible with local/test
// harnesses that don't pass a ctx.
interface EdgeContext {
waitUntil?: (promise: Promise<unknown>) => void;
}
export default async function handler(req: Request, ctx?: EdgeContext): Promise<Response> {
if (req.method !== 'POST') {
return json({ error: 'Method not allowed' }, 405);
}
// Auth.
const unauthorized = await authenticateInternalRequest(req, 'RELAY_SHARED_SECRET');
if (unauthorized) return unauthorized;
// Body size cap β two layers: Content-Length pre-read, byte-length post-read.
const contentLengthRaw = req.headers.get('content-length');
if (contentLengthRaw) {
const cl = Number.parseInt(contentLengthRaw, 10);
if (Number.isFinite(cl) && cl > MAX_BODY_BYTES) {
return json({ error: `body exceeds ${MAX_BODY_BYTES} bytes` }, 400);
}
}
// Read body as text so we can enforce the post-read cap before JSON.parse.
let bodyText: string;
try {
bodyText = await req.text();
} catch {
return json({ error: 'failed to read body' }, 400);
}
if (new TextEncoder().encode(bodyText).byteLength > MAX_BODY_BYTES) {
return json({ error: `body exceeds ${MAX_BODY_BYTES} bytes` }, 400);
}
let bodyParsed: unknown;
try {
bodyParsed = JSON.parse(bodyText);
} catch {
return json({ error: 'invalid JSON' }, 400);
}
const validation = validateStoryBody(bodyParsed);
if (!validation.ok) {
console.warn(`[brief-why-matters] validation_reject error=${validation.error}`);
return json({ error: validation.error }, validation.status);
}
const story = validation.story;
// Normalize country to ISO2 for context lookup; unknown/Global β null
// (analyst path will skip country-specific fields).
const iso2 = normalizeCountryToIso2(story.country);
// Resolve config + runtime flags.
const cfg = readConfig();
if (cfg.invalidPrimaryRaw !== null) {
console.warn(
`[brief-why-matters] unrecognised BRIEF_WHY_MATTERS_PRIMARY=${cfg.invalidPrimaryRaw} β falling back to gemini (safe path). Valid values: analyst | gemini.`,
);
}
if (cfg.invalidSamplePctRaw !== null) {
console.warn(
`[brief-why-matters] unrecognised BRIEF_WHY_MATTERS_SHADOW_SAMPLE_PCT=${cfg.invalidSamplePctRaw} β defaulting to 100. Must be integer 0-100.`,
);
}
// Cache identity.
const hash = await hashBriefStory(story);
// v10 (2026-07-10): responses now preserve the provider finish reason and
// reject `length` completions before parsing. v9 rows were written without
// that authoritative signal and may contain abbreviation-ending clips that
// look sentence-complete to punctuation heuristics, so they must not survive
// the deploy.
//
// v9 (2026-07-10): bumped from v8 alongside the analyst output-policy
// rollout. v8 rows may use the retired formulaic voice, the longer
// 40β70-word / 2β3-sentence length, or expose raw forecast probabilities,
// and cache hits bypass parseWhyMattersV2, so they must not survive the
// deploy.
//
// v8 (2026-05-14): bumped from v7 alongside the F6 date-grounding
// line appended to both whyMatters system prompts (analyst v2 and
// the gemini fallback). Every v7 row was produced from a prompt
// with no notion of "today" and may state a fabricated year β the
// exact bug F6 fixes. Serving v7 on a cache hit would keep shipping
// that fabrication for the 6h TTL, so v7 must not survive the
// deploy.
//
// v7: RSS-description grounding (2026-04-24). story:track:v1 carries
// a cleaned RSS description that rides through buildWhyMattersUserPrompt
// as the `description` field. Every v6 row was produced either without a
// description or with the cleaned-headline placeholder; with real article
// bodies arriving, the editorial voice and named-actor accuracy shift
// enough that v6 prose had to be invalidated.
//
// v6 history (kept for reference): category-gated context + prompt-level
// RELEVANCE RULE (2026-04-22) β those changes remain in v8.
const cacheKey = `brief:llm:whymatters:v10:${hash}`;
// Shadow v6βv7 for the same reason: a pre-policy v6 record would mix
// retired and current analyst outputs in the seven-day evaluation cohort.
const shadowKey = `brief:llm:whymatters:shadow:v7:${hash}`;
// Cache read. Any infrastructure failure β treat as miss (logged).
let cached: WhyMattersEnvelope | null = null;
try {
const raw = await readRawJsonFromUpstash(cacheKey);
if (raw !== null && isEnvelope(raw)) {
cached = raw;
}
} catch (err) {
console.warn(`[brief-why-matters] cache read degraded: ${err instanceof Error ? err.message : String(err)}`);
await captureSilentError(err, { tags: { route: 'api/internal/brief-why-matters', step: 'cache-read', severity: 'warn' } });
}
if (cached) {
return json({
whyMatters: cached.whyMatters,
source: 'cache',
producedBy: cached.producedBy,
hash,
}, 200);
}
// Cache miss β run paths.
const runShadow = cfg.shadowEnabled && cfg.sampleHardRoll(hash);
let analystResult: string | null = null;
let geminiResult: string | null = null;
let chosenProducer: 'analyst' | 'gemini';
let chosenValue: string | null;
if (runShadow) {
const [a, g] = await Promise.allSettled([
runAnalystPath(story, iso2),
runGeminiPath(story),
]);
analystResult = a.status === 'fulfilled' ? a.value : null;
geminiResult = g.status === 'fulfilled' ? g.value : null;
if (cfg.primary === 'analyst') {
// Fall back to gemini if analyst failed.
chosenProducer = analystResult !== null ? 'analyst' : 'gemini';
chosenValue = analystResult ?? geminiResult;
} else {
chosenProducer = geminiResult !== null ? 'gemini' : 'analyst';
chosenValue = geminiResult ?? analystResult;
}
} else if (cfg.primary === 'analyst') {
analystResult = await runAnalystPath(story, iso2);
chosenProducer = 'analyst';
chosenValue = analystResult;
} else {
geminiResult = await runGeminiPath(story);
chosenProducer = 'gemini';
chosenValue = geminiResult;
}
// Cache write β only when we actually have a value, so cache-miss
// retries on the next tick can try again.
const now = new Date().toISOString();
if (chosenValue !== null) {
const envelope: WhyMattersEnvelope = {
whyMatters: chosenValue,
producedBy: chosenProducer,
at: now,
};
try {
await setCachedData(cacheKey, envelope, WHY_MATTERS_TTL_SEC);
} catch (err) {
console.warn(`[brief-why-matters] cache write degraded: ${err instanceof Error ? err.message : String(err)}`);
await captureSilentError(err, { tags: { route: 'api/internal/brief-why-matters', step: 'cache-write', severity: 'warn' } });
}
}
// Shadow record so offline diff has pairs to sample. Background work on
// Edge runtimes MUST be registered with `ctx.waitUntil` β plain unawaited
// promises can be frozen when the isolate terminates after the response.
// Falls back to fire-and-forget when ctx is absent (local runs / tests).
if (runShadow) {
const record = {
analyst: analystResult,
gemini: geminiResult,
chosen: chosenProducer,
at: now,
};
const shadowWrite = redisPipeline([
['SET', shadowKey, JSON.stringify(record), 'EX', String(SHADOW_TTL_SEC)],
]).then(() => undefined).catch(() => {
// Silent β shadow is observability, not critical.
});
if (typeof ctx?.waitUntil === 'function') {
ctx.waitUntil(shadowWrite);
}
// When ctx is missing (local harness), the promise is still chained above
// so it runs to completion before the caller's await completes.
}
const response: {
whyMatters: string | null;
source: 'analyst' | 'gemini';
producedBy: 'analyst' | 'gemini' | null;
hash: string;
shadow?: { analyst: string | null; gemini: string | null };
} = {
whyMatters: chosenValue,
source: chosenProducer,
producedBy: chosenValue !== null ? chosenProducer : null,
hash,
};
if (runShadow) {
response.shadow = { analyst: analystResult, gemini: geminiResult };
}
return json(response, 200);
}
|