/** * Real-time verification pipeline — verify code as it streams from the LLM. * * Phase 2 of the 10x roadmap. */ export { CodeBuffer } from './code-buffer.js'; export { getFormalChecks, loadLearnedChecks, compileCheckSet, runChecks, } from './streaming-checks.js'; export { StreamingVerifier } from './streaming-verifier.js'; export type { StreamingVerifierOptions } from './streaming-verifier.js'; export { CorrectionInjector } from './correction-injector.js'; export type { CorrectionInjectorOptions, CorrectionMessage } from './correction-injector.js'; export { createVerifiedStream, createVerifiedStreamFromTokens, } from './stream-interceptor.js'; export type { VerifiedStreamOptions, VerifiedStreamResult, } from './stream-interceptor.js'; export type { CheckSeverity, CodeUnit, CodeUnitKind, CompiledCheckSet, CorrectionResult, StreamingCheck, StreamingVerifierStats, VerificationEvent, } from './types.js';