UNPKG

@ai2070/l0

Version:

L0: The Missing Reliability Substrate for AI

13 lines 285 B
export interface Rule { name: string; validate: (content: string) => Violation[]; } export interface Violation { rule: string; message: string; position?: number; } export interface GuardrailState { violations: Violation[]; } //# sourceMappingURL=types.d.ts.map