ContinuousLearningConfig interface exported
Last updated: 2026-02-24T21:07:57.579Z
Metrics
LOC: 12
Complexity: 1
Params: 0
Signature
interface ContinuousLearningConfig
Source Code
export interface ContinuousLearningConfig {
/** Whether to store learned signal→type pairs from Chrome AI */
captureFromAI: boolean;
/** Whether to store user corrections */
captureUserCorrections: boolean;
/** Minimum confidence threshold to accept learned sample */
minConfidence: number;
/** Max learned samples to keep before rotation */
maxStoredSamples: number;
/** Whether to periodically re-validate with learned samples */
revalidateOnUpdate: boolean;
}
No outgoing dependencies.
No incoming dependencies.