disclosure-bureau/web/lib/chat/agui.ts
guto 7d13f93393 ship: synthesize 158 entities, AG-UI artifacts, chat persistence, auth flow
Fase 3 onda 2 — entity synthesis at scale:
- scripts/synthesize/20_entity_summary.py: queries DB for entities with
  total_mentions ≥ threshold + top-K verbatim chunk snippets via
  entity_mentions JOIN, prompts Sonnet (Holmes-Watson voice, bilingual),
  writes narrative_summary EN+PT-BR + summary_status=synthesized.
  Ran on 187 candidates (mentions ≥ 20) → 158 OK · 1 err · 29 skipped (no
  snippets). Combined with anchor curation: 20 curated + 158 synthesized
  = 178 entities with real narrative (vs 0 a day ago).

Fase 4 — chat with typed artifacts + persistence:
- lib/chat/agui.ts: AG-UI v1 typed Artifact union (citation, crop_image,
  entity_card, evidence_card, hypothesis_card, case_card, navigation_offer)
  alongside the existing event types.
- lib/chat/tools.ts + openrouter.ts: hybrid_search emits up to 6
  citation + crop_image artifacts per query. Provider collects them and
  returns in done.artifacts so the route can persist.
- api/sessions/[id]/messages: persist artifacts to messages.citations.
- components/chat-bubble.tsx: ArtifactCard renders inline cards (citation,
  crop_image, entity_card, navigation_offer) for streamed and persisted
  messages. activeId now persisted in localStorage so navigation between
  pages keeps the same conversation. New sessions are lazy (only when user
  has zero). loadMessages hydrates tools + artifacts from server. CRUD UI:
  rename (✎) + archive (🗑) buttons per session in the list.

Home search:
- doc-list-filters: input now fires hybrid_search (rerank=0 for speed)
  in parallel with the local title filter; chunk hits render above the doc
  grid with snippet + score + classification.
- api/search/hybrid: accept ?rerank=0 to skip the cross-encoder (1.3s vs 60s).

Auth flow:
- infra: SMTP_HOST=mail.spacemail.com:587 + DMARC published; mail now lands
  in inbox. GOTRUE_MAILER_AUTOCONFIRM=false (real email verification).
- kong.yml: proxy /auth/callback on api.disclosure.top → web:3000 so PKCE
  email links don't 404 at the gateway.
- web/app/auth/callback: handle both ?code= (OAuth) and ?token=&type=
  (PKCE); redirect to the public site host before verifyOtp so the session
  cookie lands on the right domain.

Audit deliverables:
- .nirvana/outputs/disclosure-bureau/.../systems-atelier/: 5 docs (code
  analysis, tech debt, discovery brief, system arch, 5 ADRs) authored by
  sa-principal that produced this roadmap. Kept in-tree for traceability.
2026-05-18 03:52:59 -03:00

113 lines
3.6 KiB
TypeScript

/**
* AG-UI v1-aligned SSE event helpers (ADR-001, Phase 4).
*
* Implements the AG-UI v1 protocol shape — events and typed artifacts — so the
* same backend can feed the in-app chat and future MCP / external clients.
* Wire-format remains SSE for browser compatibility.
*
* Events:
* text_delta — append text to the current assistant message
* tool_start — model is calling a tool (renders collapsible block)
* tool_result — local handler finished (fills the block)
* navigate — clickable navigation button inline (legacy; prefer the
* navigation_offer artifact below)
* artifact — typed rich object the UI renders inline. See `Artifact`.
* done — terminal event; carries usage + final assistant message id
* error — terminal event; carries error detail
*
* SSE wire format per message:
*
* event: <name>
* data: <json>
*
* <blank line>
*/
export interface BBox {
x: number;
y: number;
w: number;
h: number;
}
/** Inline-rendered, typed payloads. The chat UI renders each kind as a card. */
export type Artifact =
| {
kind: "citation";
chunk_id: string;
doc_id: string;
page: number;
type?: string;
classification?: string | null;
bbox?: BBox | null;
snippet?: string;
score?: number;
}
| {
kind: "crop_image";
src: string; // /api/crop?doc=…&page=…&x=…
doc_id: string;
page: number;
chunk_id?: string;
alt_en?: string;
alt_pt?: string;
}
| {
kind: "entity_card";
entity_class: "person" | "organization" | "location" | "event" | "uap_object" | "vehicle" | "operation" | "concept";
entity_id: string;
canonical_name: string;
total_mentions?: number;
documents_count?: number;
}
| { kind: "evidence_card"; evidence_id: string; title?: string; grade?: string }
| { kind: "hypothesis_card"; hypothesis_id: string; title?: string; posterior?: number }
| { kind: "case_card"; case_id: string; title?: string }
| { kind: "navigation_offer"; target: string; label_en: string; label_pt: string };
export type AGUIEvent =
| { type: "text_delta"; delta: string }
| { type: "tool_start"; id: string; name: string; args: Record<string, unknown> }
| { type: "tool_result"; id: string; result: unknown; durationMs?: number }
| { type: "navigate"; target: string; label: string }
| { type: "artifact"; artifact: Artifact }
| { type: "done"; provider: string; model: string; usage?: Record<string, unknown>; messageId?: string }
| { type: "error"; message: string };
/**
* Encode an event into the byte-stream chunks expected by the SSE protocol.
*/
export function encodeEvent(ev: AGUIEvent): Uint8Array {
const enc = new TextEncoder();
const json = JSON.stringify(ev);
return enc.encode(`event: ${ev.type}\ndata: ${json}\n\n`);
}
/**
* Helper that creates a ReadableStream + a typed `emit()` callback to push
* events into it. Caller closes the stream by calling `emit({type:"done"})` or
* `close()`.
*/
export function createEventStream(): {
stream: ReadableStream<Uint8Array>;
emit: (ev: AGUIEvent) => void;
close: () => void;
} {
let controller!: ReadableStreamDefaultController<Uint8Array>;
const stream = new ReadableStream<Uint8Array>({
start(c) {
controller = c;
},
});
return {
stream,
emit(ev) {
try {
controller.enqueue(encodeEvent(ev));
} catch { /* stream closed */ }
},
close() {
try { controller.close(); } catch { /* already closed */ }
},
};
}