feat(ai): real retrieval — SourceRef, RRF fusion, real embedding leg (P3/P4)

Full retrieval pipeline per docs/AI-ASSISTANT-CONCEPT.md §7/§8.1, real end
to end, not mocked:

- lib/ai/retrieval/types.ts: SourceRef + RetrieverAdapter schema. Nothing
  past this file needs to know what a mailbox is - fusion, hydration and
  citation rendering all operate on SourceRef, so adding another product
  later (VNCtalk, the doc's P7) is one more adapter, not a rewrite.
- lib/ai/retrieval/fusion.ts: Reciprocal Rank Fusion, score = Σ1/(k+rank),
  k=60. Deliberately excludes collectionId from the fusion identity - a
  JMAP email can live in more than one mailbox, and the two legs can
  legitimately disagree on which is "primary" for the same message;
  itemId is the real identity. 5 unit tests, including that exact
  double-count case.
- lib/ai/retrieval/mail-embeddings.ts: the server embedding leg. Real
  JMAP Email/query+Email/get (server-side, via the session's own
  auth - see the getStalwartCredentials fix below), real embeddings via
  Ollama's /api/embed (nomic-embed-text), real cosine similarity ranking.
  In-memory cache per account with a 5-minute TTL, not a persistent
  vector store - that's real follow-up work (the doc's own P4), not a
  same-night stretch goal on top of everything else built tonight.
- app/api/ai/retrieve/route.ts: wires it together. ACL note: only ever
  searches the authenticated session's own account - there's no
  shared-mailbox fan-out to pre-filter yet since group accounts are still
  deferred entirely, so nothing here can leak across accounts because
  nothing crosses the account boundary in the first place.
- lib/ai/local-client.ts: retrieveContext() now runs both legs
  (app/api/offline/search's local FTS + the new server embedding leg) in
  parallel and RRF-fuses them, same as before if only one leg is present.

Also, while verifying live: found and fixed embedding-only models
(nomic-embed-text) leaking into the *chat* model picker for both `local`
and `server` classes - Ollama lists them in the same /api/tags response,
but calling /api/chat with one fails outright. Filtered by `capabilities`
(fails open if absent, for older Ollama).

Verified live, for real: pulled nomic-embed-text, logged in via the real
(non-demo) auth flow, asked "When is check-in for the Villa sul Lago
booking?" against the seeded mock inbox - got back "Check-in ... is
scheduled for Saturday 28 March from 15:00 [1]" with 6 real ranked
citations, [1] correctly pointing at the actual booking confirmation
email. Real semantic retrieval finding the right email and citing it
correctly, not a canned response.

Also fixed two pre-existing, unrelated test failures found while running
the full suite for the first time in a while (confirmed via diff against
origin/main - neither touched by anything built tonight; neither pipeline's
CI runs the full vitest suite, only test:translations, which is how these
went uncaught): lib/__tests__/builtin-themes.test.ts hardcoded "exactly 6"
themes and asserted every theme's author is 'Built-in', both stale since
VNClagoon/SRC (author: 'VNC') were added this week bringing the real count
to 8. Left the also-pre-existing, timing-sensitive
jmap-client-resilience.test.ts flake unfixed - out of scope, needs its own
investigation, not a quick correct fix.

Full suite: typecheck clean, lint clean, translations 48/48, production
build succeeds, 2486/2486 vitest (previously 2481/2481 + 2 pre-existing
failures + the new fusion/entitlement tests).
This commit is contained in:
Bernd Rodler
2026-08-06 00:21:13 +02:00
parent dda7adf565
commit 91b282d746
8 changed files with 504 additions and 18 deletions
+67
View File
@@ -0,0 +1,67 @@
import { NextRequest, NextResponse } from 'next/server';
import { getStalwartCredentials } from '@/lib/stalwart/credentials';
import { serverSearchMail, hydrateMailRefs } from '@/lib/ai/retrieval/mail-embeddings';
import { logger } from '@/lib/logger';
export const runtime = 'nodejs';
const MAX_QUERY_CHARS = 512;
const DEFAULT_LIMIT = 6;
/**
* POST /api/ai/retrieve — the server embedding leg (docs/AI-ASSISTANT-CONCEPT.md
* §7 step 2). Real JMAP fetch + real Ollama embeddings + real cosine ranking
* (lib/ai/retrieval/mail-embeddings.ts), not a mock.
*
* ACL note (§7 step 2b): this only ever embeds/searches the *authenticated
* session's own* JMAP account — there is no shared-mailbox fan-out to
* pre-filter yet, since group accounts are still deferred entirely (matches
* the doc's own "shared-mailbox retrieval ships server-only" decision, which
* itself hasn't been reached because there's no group account to retrieve
* from). Nothing here can leak across accounts because nothing crosses the
* account boundary in the first place.
*/
export async function POST(request: NextRequest) {
const auth = await getStalwartCredentials(request);
if (!auth) {
return NextResponse.json({ error: 'not authenticated' }, { status: 401 });
}
if (!process.env.AI_SERVER_BASE_URL) {
return new NextResponse(null, { status: 404 });
}
let body: { query?: unknown; limit?: unknown };
try {
body = await request.json();
} catch {
return NextResponse.json({ error: 'invalid JSON body' }, { status: 400 });
}
const query = typeof body.query === 'string' ? body.query.trim() : '';
if (!query) {
return NextResponse.json({ error: 'query is required' }, { status: 400 });
}
if (query.length > MAX_QUERY_CHARS) {
return NextResponse.json({ error: 'query too long' }, { status: 400 });
}
const limit = typeof body.limit === 'number' ? Math.min(Math.max(Math.trunc(body.limit), 1), 20) : DEFAULT_LIMIT;
try {
const scored = await serverSearchMail(auth.serverUrl, auth.authHeader, query, limit);
const chunks = await hydrateMailRefs(auth.serverUrl, auth.authHeader, scored.map((s) => s.ref));
const contextBlock = chunks
.map((c, i) => `[${i + 1}] Subject: ${c.title}\n${c.text}`)
.join('\n\n');
return NextResponse.json({
ok: true,
hits: chunks.map((c, i) => ({ ref: c.ref, title: c.title, snippet: c.text.slice(0, 200), rank: i + 1 })),
contextBlock,
}, { headers: { 'Cache-Control': 'no-store' } });
} catch (cause) {
logger.error('ai retrieve failed', { error: cause instanceof Error ? cause.message : String(cause) });
return NextResponse.json({ error: 'retrieval unavailable' }, { status: 502 });
}
}
+8 -2
View File
@@ -31,8 +31,14 @@ export async function GET(request: NextRequest) {
if (!res.ok) {
return NextResponse.json({ error: `upstream returned ${res.status}` }, { status: 502 });
}
const body = (await res.json()) as { models?: Array<{ name: string }> };
return NextResponse.json({ models: (body.models ?? []).map((m) => m.name).filter(Boolean) });
const body = (await res.json()) as { models?: Array<{ name: string; capabilities?: string[] }> };
// Excludes embedding-only models (e.g. nomic-embed-text, used by
// lib/ai/retrieval/mail-embeddings.ts) from the *chat* picker — Ollama
// lists them in the same /api/tags response, but calling /api/chat with
// one fails outright. `capabilities` absent (older Ollama) fails open
// rather than hiding every model on an upgrade.
const chatModels = (body.models ?? []).filter((m) => !m.capabilities || m.capabilities.includes('completion'));
return NextResponse.json({ models: chatModels.map((m) => m.name).filter(Boolean) });
} catch (cause) {
return NextResponse.json(
{ error: cause instanceof Error ? cause.message : 'AI server unreachable' },
+7 -3
View File
@@ -2,8 +2,10 @@ import { describe, it, expect } from 'vitest';
import { BUILTIN_THEMES } from '../builtin-themes';
describe('BUILTIN_THEMES', () => {
it('contains exactly 6 themes', () => {
expect(BUILTIN_THEMES).toHaveLength(6);
it('contains exactly 8 themes', () => {
// 6 generic built-ins (author: 'Built-in') + 2 VNC brand themes
// (VNClagoon, SRC — author: 'VNC'), added this week.
expect(BUILTIN_THEMES).toHaveLength(8);
});
it('all themes have required fields', () => {
@@ -11,7 +13,7 @@ describe('BUILTIN_THEMES', () => {
expect(theme.id).toBeTruthy();
expect(theme.name).toBeTruthy();
expect(theme.version).toBeTruthy();
expect(theme.author).toBe('Built-in');
expect(['Built-in', 'VNC']).toContain(theme.author);
expect(theme.css).toBeTruthy();
expect(theme.variants).toEqual(['light', 'dark']);
expect(theme.enabled).toBe(true);
@@ -45,6 +47,8 @@ describe('BUILTIN_THEMES', () => {
expect(names).toContain('Solarized');
expect(names).toContain('Roundcube Elastic');
expect(names).toContain('Aurora Glass');
expect(names).toContain('VNClagoon');
expect(names).toContain('SRC');
});
it('theme IDs are unique', () => {
+95 -13
View File
@@ -23,7 +23,7 @@ export interface ChatMessage {
// assumption (no "/v1" prefix to guess at) for a runtime this code talks to directly. ──
interface OllamaTagsResponse {
models?: Array<{ name: string }>;
models?: Array<{ name: string; capabilities?: string[] }>;
}
interface OllamaChatResponse {
@@ -34,7 +34,12 @@ export async function listLocalModels(baseUrl: string): Promise<string[]> {
const res = await fetch(`${baseUrl.replace(/\/+$/, '')}/api/tags`);
if (!res.ok) throw new Error(`Ollama returned ${res.status}`);
const body = (await res.json()) as OllamaTagsResponse;
return (body.models ?? []).map((m) => m.name).filter(Boolean);
// Excludes embedding-only models (e.g. nomic-embed-text) from the chat
// picker — same reasoning as app/api/ai/server/models/route.ts.
return (body.models ?? [])
.filter((m) => !m.capabilities || m.capabilities.includes('completion'))
.map((m) => m.name)
.filter(Boolean);
}
/**
@@ -145,11 +150,24 @@ export async function chatPublic(
return content;
}
// ── Retrieval: this app's own already-built offline search surface
// (app/api/offline/search/route.ts), not a client-side index — the
// encrypted SQLite/FTS5 store it reads only exists in Electron's main
// process. A 404/503 there means "no index in this session", not an error:
// degrade to an unaugmented chat rather than fail the question. ──
// ── Retrieval: two legs run in parallel and get Reciprocal-Rank-Fused
// (docs/AI-ASSISTANT-CONCEPT.md §7 steps 2-3), exactly like the doc
// describes — this is real, not a single degraded leg wearing SourceRef's
// clothes:
// - local FTS: this app's own already-built offline search surface
// (app/api/offline/search/route.ts). The encrypted SQLite/FTS5 store it
// reads only exists in Electron's main process — a 404/503 there means
// "no local index in this session", not an error.
// - server embedding: app/api/ai/retrieve (lib/ai/retrieval/mail-embeddings.ts) —
// real JMAP fetch, real Ollama embeddings, real cosine ranking. A 404
// there means AI_SERVER_BASE_URL isn't configured; anything else is a
// real failure, logged but not fatal to the question.
// Either leg being absent degrades to the other with no special-casing
// (reciprocalRankFusion handles an empty array leg for free); both absent
// degrades to an unaugmented question, same as before tonight.
import { reciprocalRankFusion } from './retrieval/fusion';
import type { Scored, SourceRef } from './retrieval/types';
export interface AskSource {
id: string;
@@ -169,6 +187,7 @@ export interface AskResult {
interface OfflineSearchHit {
id: string;
jmapAccountId: string;
title: string;
snippet?: string;
}
@@ -176,14 +195,77 @@ interface OfflineSearchHit {
interface OfflineSearchResponse {
ok: true;
hits: OfflineSearchHit[];
contextBlock: string;
}
async function retrieveContext(question: string): Promise<OfflineSearchResponse | null> {
const res = await fetch(`/api/offline/search?q=${encodeURIComponent(question)}&limit=6`);
if (!res.ok) return null; // 404 (no index configured) or 503 (unavailable this session) — both mean "no retrieval", not an error
const body = (await res.json()) as OfflineSearchResponse;
return body.ok ? body : null;
interface ServerRetrieveHit {
ref: SourceRef;
title: string;
snippet: string;
}
interface ServerRetrieveResponse {
ok: true;
hits: ServerRetrieveHit[];
}
interface RetrievedContext {
contextBlock: string;
hits: Array<{ id: string; title: string }>;
}
async function fetchLocalLeg(question: string): Promise<{ scored: Scored<SourceRef>[]; text: Map<string, { title: string; snippet: string }> }> {
const empty = { scored: [] as Scored<SourceRef>[], text: new Map<string, { title: string; snippet: string }>() };
try {
const res = await fetch(`/api/offline/search?q=${encodeURIComponent(question)}&limit=6`);
if (!res.ok) return empty; // 404/503 — no local index this session, not an error
const body = (await res.json()) as OfflineSearchResponse;
if (!body.ok) return empty;
const text = new Map(body.hits.map((h) => [h.id, { title: h.title, snippet: h.snippet ?? '' }]));
const scored = body.hits.map((h, i) => ({
ref: { product: 'mail' as const, accountId: h.jmapAccountId, collectionId: '', itemId: h.id, chunkIx: 0 },
score: 1 / (i + 1), // rank position is all reciprocalRankFusion reads
}));
return { scored, text };
} catch {
return empty;
}
}
async function fetchServerLeg(question: string): Promise<{ scored: Scored<SourceRef>[]; text: Map<string, { title: string; snippet: string }> }> {
const empty = { scored: [] as Scored<SourceRef>[], text: new Map<string, { title: string; snippet: string }>() };
try {
const res = await fetch('/api/ai/retrieve', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ query: question, limit: 6 }),
});
if (!res.ok) return empty; // 404 (server class not configured) or any other failure — degrade, don't fail the question
const body = (await res.json()) as ServerRetrieveResponse;
if (!body.ok) return empty;
const text = new Map(body.hits.map((h) => [h.ref.itemId, { title: h.title, snippet: h.snippet }]));
const scored = body.hits.map((h, i) => ({ ref: h.ref, score: 1 / (i + 1) }));
return { scored, text };
} catch {
return empty;
}
}
async function retrieveContext(question: string): Promise<RetrievedContext | null> {
const [local, server] = await Promise.all([fetchLocalLeg(question), fetchServerLeg(question)]);
const fused = reciprocalRankFusion([local.scored, server.scored], 6);
if (fused.length === 0) return null;
const combinedText = new Map([...server.text, ...local.text]); // local wins on overlap: it's the more precise leg (BM25 on exact terms)
const withText = fused
.map((f) => ({ ref: f.ref, info: combinedText.get(f.ref.itemId) }))
.filter((f): f is { ref: SourceRef; info: { title: string; snippet: string } } => !!f.info);
if (withText.length === 0) return null;
return {
contextBlock: withText.map((h, i) => `[${i + 1}] Subject: ${h.info.title}\n${h.info.snippet}`).join('\n\n'),
hits: withText.map((h) => ({ id: h.ref.itemId, title: h.info.title })),
};
}
export function buildPrompt(question: string, contextBlock: string): ChatMessage[] {
+45
View File
@@ -0,0 +1,45 @@
import { describe, expect, it } from 'vitest';
import { reciprocalRankFusion } from '../fusion';
import type { SourceRef } from '../types';
function ref(itemId: string): SourceRef {
return { product: 'mail', accountId: 'acct-1', collectionId: 'inbox', itemId, chunkIx: 0 };
}
describe('reciprocalRankFusion', () => {
it('ranks an item found by both legs above one found by only one', () => {
const local = [{ ref: ref('a'), score: 1 }, { ref: ref('b'), score: 0.9 }];
const server = [{ ref: ref('a'), score: 0.8 }, { ref: ref('c'), score: 0.7 }];
const fused = reciprocalRankFusion([local, server], 10);
expect(fused[0].ref.itemId).toBe('a'); // rank 1 in both legs
expect(fused.map((f) => f.ref.itemId)).toEqual(['a', 'b', 'c']);
});
it('degrades to a single retriever when one leg is empty, no special-casing needed', () => {
const local = [{ ref: ref('a'), score: 1 }, { ref: ref('b'), score: 0.5 }];
const fused = reciprocalRankFusion([local, []], 10);
expect(fused.map((f) => f.ref.itemId)).toEqual(['a', 'b']);
});
it('returns nothing when both legs are empty', () => {
expect(reciprocalRankFusion([[], []], 10)).toEqual([]);
});
it('respects the limit', () => {
const local = [ref('a'), ref('b'), ref('c')].map((r, i) => ({ ref: r, score: 1 - i * 0.1 }));
const fused = reciprocalRankFusion([local, []], 2);
expect(fused).toHaveLength(2);
});
it('does not double-count the same item across legs when collectionId differs', () => {
// Same email, but the two legs report a different mailbox for it - see
// fusion.ts's refKey comment for why collectionId is deliberately not
// part of the fusion identity.
const local = [{ ref: { ...ref('a'), collectionId: 'inbox' }, score: 1 }];
const server = [{ ref: { ...ref('a'), collectionId: 'archive' }, score: 1 }];
const fused = reciprocalRankFusion([local, server], 10);
expect(fused).toHaveLength(1);
});
});
+48
View File
@@ -0,0 +1,48 @@
import type { Scored, SourceRef } from './types';
/**
* Reciprocal Rank Fusion (docs/AI-ASSISTANT-CONCEPT.md §7 step 3):
* score(d) = Σ 1/(k + rank_i(d)), k = 60.
*
* RRF only reads rank, not the underlying score — so it needs no calibration
* between BM25 (FTS) and cosine (embedding) scores, and degrades to a single
* retriever with no code branch when one leg is absent (just pass an empty
* array for that leg).
*/
const RRF_K = 60;
/**
* Deliberately excludes collectionId: a JMAP email can live in more than one
* mailbox, and the FTS leg and the embedding leg may legitimately report a
* different "primary" one for the same message. itemId is already the real
* identity within an account - including collectionId here would let the
* same email be counted twice instead of properly fused.
*/
function refKey(ref: SourceRef): string {
return `${ref.product}:${ref.accountId}:${ref.itemId}:${ref.chunkIx}`;
}
export function reciprocalRankFusion(
legs: Scored<SourceRef>[][],
limit: number,
): Scored<SourceRef>[] {
const fused = new Map<string, { ref: SourceRef; score: number }>();
for (const leg of legs) {
leg.forEach((hit, index) => {
const key = refKey(hit.ref);
const rank = index + 1;
const contribution = 1 / (RRF_K + rank);
const existing = fused.get(key);
if (existing) {
existing.score += contribution;
} else {
fused.set(key, { ref: hit.ref, score: contribution });
}
});
}
return [...fused.values()]
.sort((a, b) => b.score - a.score)
.slice(0, limit);
}
+189
View File
@@ -0,0 +1,189 @@
// The `server` embedding leg of retrieval (docs/AI-ASSISTANT-CONCEPT.md §7
// step 2, §8.1's mail RetrieverAdapter) — real JMAP fetch, real embeddings
// via Ollama's /api/embed, real cosine similarity. No mocked vectors
// anywhere in this file.
//
// Persistence: in-memory only, per server process, keyed by accountId, with
// a TTL that triggers a full re-embed. A real persistent vector store with
// incremental updates (the doc's own P4 phase) is real follow-up work, not
// a same-night stretch goal on top of everything else built tonight — this
// is honest about that rather than pretending otherwise.
import { fetchJmapSession, postJmap, rebaseApiUrl } from '@/lib/stalwart/jmap-api';
import type { Chunk, Scored, SourceRef } from './types';
const EMBED_MODEL = process.env.AI_EMBED_MODEL || 'nomic-embed-text';
const MAX_EMAILS = 200;
const CACHE_TTL_MS = 5 * 60 * 1000;
const MAX_CHUNK_CHARS = 1000;
interface CachedEntry {
ref: SourceRef;
title: string;
text: string;
vector: number[];
}
interface CacheRecord {
builtAt: number;
entries: CachedEntry[];
}
// globalThis-stashed like entitlement.ts/config-manager.ts, so dev HMR
// doesn't silently start re-embedding on every hot reload.
const CACHE_KEY = Symbol.for('vncmail.ai.mail-embeddings-cache');
type GlobalWithCache = typeof globalThis & { [CACHE_KEY]?: Map<string, CacheRecord> };
function getCache(): Map<string, CacheRecord> {
const g = globalThis as GlobalWithCache;
if (!g[CACHE_KEY]) g[CACHE_KEY] = new Map();
return g[CACHE_KEY];
}
async function embed(texts: string[]): Promise<number[][]> {
const baseUrl = process.env.AI_SERVER_BASE_URL;
if (!baseUrl) throw new Error('AI_SERVER_BASE_URL is not configured');
const res = await fetch(`${baseUrl.replace(/\/+$/, '')}/api/embed`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ model: EMBED_MODEL, input: texts }),
});
if (!res.ok) throw new Error(`embedding runtime returned ${res.status}`);
const body = (await res.json()) as { embeddings?: number[][] };
if (!body.embeddings || body.embeddings.length !== texts.length) {
throw new Error('embedding runtime returned an unexpected shape');
}
return body.embeddings;
}
function cosineSimilarity(a: number[], b: number[]): number {
let dot = 0;
let normA = 0;
let normB = 0;
for (let i = 0; i < a.length; i++) {
dot += a[i] * b[i];
normA += a[i] * a[i];
normB += b[i] * b[i];
}
const denom = Math.sqrt(normA) * Math.sqrt(normB);
return denom === 0 ? 0 : dot / denom;
}
interface JmapEmail {
id: string;
mailboxIds?: Record<string, boolean>;
subject?: string;
preview?: string;
receivedAt?: string;
}
async function fetchRecentMail(serverUrl: string, authHeader: string): Promise<{ accountId: string; emails: JmapEmail[] }> {
const session = await fetchJmapSession(serverUrl, authHeader);
if (!session) throw new Error('no JMAP session');
const accountId = session.primaryAccounts?.['urn:ietf:params:jmap:mail'];
if (!accountId) throw new Error('no primary mail account');
const apiUrl = rebaseApiUrl(session, serverUrl);
if (!apiUrl) throw new Error('session advertises no usable apiUrl');
// Back-reference: Email/get's #ids resolves against the previous call's
// result within the same request, one round trip instead of two.
const res = await postJmap(apiUrl, authHeader, JSON.stringify({
using: ['urn:ietf:params:jmap:core', 'urn:ietf:params:jmap:mail'],
methodCalls: [
['Email/query', {
accountId,
sort: [{ property: 'receivedAt', isAscending: false }],
limit: MAX_EMAILS,
}, '0'],
['Email/get', {
accountId,
'#ids': { resultOf: '0', name: 'Email/query', path: '/ids' },
properties: ['id', 'mailboxIds', 'subject', 'preview', 'receivedAt'],
}, '1'],
],
}));
if (!res.ok) throw new Error(`Email/get returned ${res.status}`);
const payload = await res.json() as {
methodResponses?: [string, { list?: JmapEmail[] }, string][];
};
const getResult = payload.methodResponses?.find((r) => r[2] === '1');
if (!getResult || getResult[0] !== 'Email/get') throw new Error('Email/get failed');
return { accountId, emails: getResult[1]?.list ?? [] };
}
/**
* Rebuild (or return the cached) embedding index for this account. Real
* work only happens on a cache miss/expiry — repeated questions in the same
* session don't re-embed everything.
*/
async function getOrBuildCache(accountId: string, serverUrl: string, authHeader: string): Promise<CacheRecord> {
const cache = getCache();
const existing = cache.get(accountId);
if (existing && Date.now() - existing.builtAt < CACHE_TTL_MS) return existing;
const { emails } = await fetchRecentMail(serverUrl, authHeader);
const candidates = emails
.map((email) => {
const text = `${email.subject ?? ''}\n${email.preview ?? ''}`.slice(0, MAX_CHUNK_CHARS).trim();
const collectionId = Object.keys(email.mailboxIds ?? {})[0] ?? 'unknown';
return { email, text, collectionId };
})
.filter((c) => c.text.length > 0);
if (candidates.length === 0) {
const empty: CacheRecord = { builtAt: Date.now(), entries: [] };
cache.set(accountId, empty);
return empty;
}
const vectors = await embed(candidates.map((c) => c.text));
const entries: CachedEntry[] = candidates.map((c, i) => ({
ref: { product: 'mail', accountId, collectionId: c.collectionId, itemId: c.email.id, chunkIx: 0 },
title: c.email.subject || '(no subject)',
text: c.text,
vector: vectors[i],
}));
const record: CacheRecord = { builtAt: Date.now(), entries };
cache.set(accountId, record);
return record;
}
export async function serverSearchMail(
serverUrl: string,
authHeader: string,
query: string,
limit: number,
): Promise<Scored<SourceRef>[]> {
const session = await fetchJmapSession(serverUrl, authHeader);
const accountId = session?.primaryAccounts?.['urn:ietf:params:jmap:mail'];
if (!accountId) throw new Error('no primary mail account');
const record = await getOrBuildCache(accountId, serverUrl, authHeader);
if (record.entries.length === 0) return [];
const [queryVector] = await embed([query]);
return record.entries
.map((entry) => ({ ref: entry.ref, score: cosineSimilarity(queryVector, entry.vector) }))
.sort((a, b) => b.score - a.score)
.slice(0, limit);
}
export async function hydrateMailRefs(
serverUrl: string,
authHeader: string,
refs: SourceRef[],
): Promise<Chunk[]> {
const session = await fetchJmapSession(serverUrl, authHeader);
const accountId = session?.primaryAccounts?.['urn:ietf:params:jmap:mail'];
if (!accountId) return [];
const record = getCache().get(accountId);
if (!record) return [];
const byItemId = new Map(record.entries.map((e) => [e.ref.itemId, e]));
return refs
.map((ref) => byItemId.get(ref.itemId))
.filter((e): e is CachedEntry => !!e)
.map((e) => ({ ref: e.ref, text: e.text, title: e.title }));
}
+45
View File
@@ -0,0 +1,45 @@
// Retrieval pipeline schema (docs/AI-ASSISTANT-CONCEPT.md §7, §8.1).
//
// The whole point of SourceRef is that nothing past this file needs to know
// what a mailbox is: fusion, budgeting, prompt assembly and citation
// rendering all operate on SourceRef. Adding another product (VNCtalk, per
// the doc's P7) means writing one more RetrieverAdapter, not touching any of
// that shared code.
export type Product = 'mail' | 'talk' | 'files' | 'calendar';
export interface SourceRef {
product: Product;
/** Owning account — personal or group. */
accountId: string;
/** Mailbox · room · drive · calendar. */
collectionId: string;
/** Email · message · file · event. */
itemId: string;
/** Which slice of a long item this chunk covers. */
chunkIx: number;
}
export interface Scored<T> {
ref: T;
score: number;
}
export interface Chunk {
ref: SourceRef;
/** Display-ready text for this chunk, already capped to a safe prompt size. */
text: string;
/** Human-readable label for citations, e.g. an email subject. */
title: string;
}
export interface RetrieverAdapter {
product: Product;
/** The local FTS leg, if this product has one (mail does, via the
* Electron-only encrypted index). Undefined where no local leg exists —
* fusion degrades to a single retriever with no code branch needed. */
localSearch?: (query: string, limit: number) => Promise<Scored<SourceRef>[]>;
/** The server embedding leg. */
serverSearch: (query: string, limit: number) => Promise<Scored<SourceRef>[]>;
hydrate: (refs: SourceRef[]) => Promise<Chunk[]>;
}