@devexcelsior/inference-instruction-kit
Version:
10 lines (9 loc) • 329 B
TypeScript
export type HealingInstructionType = 'PATCH' | 'ROLLBACK' | 'RETRY' | 'ESCALATE';
export interface HealingInstruction {
type: HealingInstructionType;
target: string;
value?: any;
reason?: string;
confidence?: number;
}
export declare function validateInstruction(payload: any): payload is HealingInstruction;