Spaces:
Running
Running
File size: 880 Bytes
518343a | 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 | /**
* @szl-holdings/perception-loop
*
* Operator-loop perception envelope. Sibling to seeing-eye (agent vision);
* this package serves operator/reviewer/scene-actor presence on the
* Doctrine V6 evidence-first pillar.
*
* See docs/research/perception-bio-synthesis-2026.md §1.
*/
export type {
PerceptionEnvelope,
Detection,
Keypoint,
HeadName,
LivenessSummary,
DetectionsSummary,
NormalisedBox,
} from './envelope.js';
export { summariseDetections } from './envelope.js';
export { computeLiveness } from './liveness.js';
export type { FrameSignal, LivenessOptions } from './liveness.js';
export { detect, nowMs } from './pipeline.js';
export type { Frame, DetectorAdapter, DetectOptions } from './pipeline.js';
export const PERCEPTION_LOOP_VERSION = '0.1.0' as const;
export const PERCEPTION_ENVELOPE_RECEIPT_CLASS = 'perception.envelope.v1' as const;
|