File size: 2,562 Bytes
fa9c65f | 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 | export interface BriefStoryHashInput {
headline?: string;
source?: string;
threatLevel?: string;
category?: string;
country?: string;
/** v5: part of cache identity so same-story + different description
* don't collide on cached analyst output. */
description?: string;
}
export interface BriefStoryPromptInput {
headline: string;
source: string;
threatLevel: string;
category: string;
country: string;
}
export const WHY_MATTERS_SYSTEM: string;
export const WHY_MATTERS_V1_MIN_CHARS: number;
export const WHY_MATTERS_V1_MAX_CHARS: number;
export const WHY_MATTERS_V2_MIN_CHARS: number;
export const WHY_MATTERS_V2_MAX_CHARS: number;
export function briefDateLine(todayIso?: string): string;
export function buildWhyMattersUserPrompt(
story: BriefStoryPromptInput,
todayIso?: string,
): {
system: string;
user: string;
};
export function parseWhyMatters(text: unknown): string | null;
export function hasTerminalPunctuation(text: unknown): boolean;
export function hashBriefStory(story: BriefStoryHashInput): Promise<string>;
// ββ v2 (analyst path only) ββββββββββββββββββββββββββββββββββββββββββββββββ
export const WHY_MATTERS_ANALYST_SYSTEM_V2: string;
export interface WhyMattersV2Provenance {
publicStory?: Pick<BriefStoryHashInput, 'headline' | 'description' | 'source'>;
privateForecasts?: string;
}
export function parseWhyMattersV2(
text: unknown,
provenance?: WhyMattersV2Provenance,
): string | null;
// ββ Hallucination validator (PR-2 of brief-content-quality regressions) ββ
export function extractProperNounSequences(text: string): string[][];
export function validateNoHallucinatedProperNouns(
summary: unknown,
headline: unknown,
): { ok: true } | { ok: false; hallucinated: string[] };
// ββ Grounding spine (#4921) ββββββββββββββββββββββββββββββββββββββββββββββββ
export function extractAnchorTokens(s: string): string[];
export function groundingTokenSet(text: string): Set<string>;
export function checkLeadGrounding(
synthesis: { lead?: string; threads?: Array<{ tag?: string; teaser?: string }> },
stories: Array<{ headline?: string }>,
storyCap?: number,
): boolean;
export function leadGroundsAgainstStory(lead: string, headline: string): boolean;
export function verifyCitationIndexes(
text: string,
sourceCount: number,
): { text: string; stripped: number };
|