@devexcelsior/healing-reinforcer
Version:
Tracks healing success rates and tunes agent confidence based on runtime outcomes.
10 lines (9 loc) • 323 B
TypeScript
type Outcome = 'SUCCESS' | 'ROLLBACK' | 'ESCALATE';
interface ReinforcementRecord {
signalType: string;
agentId: string;
outcome: Outcome;
}
export declare function reinforce(record: ReinforcementRecord): void;
export declare function getAgentConfidence(signalType: string, agentId: string): number;
export {};