This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """Diagnostic script: validate why Hypernative oracle agents 67845/67846/67847 | |
| are not firing despite their alert filter conditions being met. | |
| The agents have shown `lastTriggered: None` and 0 alerts delivered since | |
| deploy on 2026-04-24. Hypernative confirmed (2026-04-28) that the original | |
| silence was a sandbox blob exception during `python_processing` variable | |
| extraction. The fix was deployed and verified live — yet the agents still | |
| have not fired. This script exists to localize where in the pipeline | |
| the alerts are getting lost. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def func_retention(x, a, b, c, d): | |
| return a * np.exp(-b * x) - (c * d**x) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def func_conversion(x, a, b, c, d): | |
| return (a * (1 - b)**x) - (c * d**x) |