You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Overconfidence is a major LLM flaw. An agent might state "I am 95% confident this will fix the bug" but fail repeatedly. We need to track calibration mathematically.
Tasks
Implement MiscalibrationDetector.
Maintain a history of the agent's stated confidence per step vs actual success/failure outcomes.
Calculate the Brier Score for the session (mean squared difference between stated probability and actual outcome).
Enforce an invariant to trigger a warning or block if the Brier Score indicates severe miscalibration (e.g., score > 0.25).
Phase 4: Cognitive Lattice
The Context
Overconfidence is a major LLM flaw. An agent might state "I am 95% confident this will fix the bug" but fail repeatedly. We need to track calibration mathematically.
Tasks
MiscalibrationDetector.Part of Epic #651