/** * Universal domain lens — the "ZPL AI" feature. * * ANY question, ANY topic. The AI breaks it into options + factors, * the engine scores each option's balance/neutrality mathematically. * * "Pizza or hotdog?" → factors: nutrition, cost, taste, health, convenience * → Engine computes AIN for each → balanced mathematical answer * * This is what makes ZPL unique: not opinions, but math. * Score: the engine's AIN on the 0.0-1.0 scale (6 decimals), displayed here on * a 0-100 scale with its decimals kept — see src/ain-format.ts. */ import type { DomainLens } from "./types.js"; export declare const universalLens: DomainLens;