Update config.jsonc to adjust delay settings and enable critical stop in risk management

- Changed minimum delay from 3 minutes to 2 minutes
- Changed maximum delay from 5 minutes to 4 minutes
- Enabled stopping on critical issues in risk management
This commit is contained in:
2025-11-09 11:17:31 +01:00
parent 22adf44f63
commit 393379900c
2 changed files with 716 additions and 131 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -52,8 +52,8 @@
"semanticDedup": true, // Filter queries with high word similarity (Jaccard). Reduces repetitive patterns. "semanticDedup": true, // Filter queries with high word similarity (Jaccard). Reduces repetitive patterns.
"semanticDedupThreshold": 0.65, // Similarity threshold (0-1). Lower = more strict filtering. "semanticDedupThreshold": 0.65, // Similarity threshold (0-1). Lower = more strict filtering.
"delay": { "delay": {
"min": "3min", "min": "2min",
"max": "5min" "max": "4min"
} }
} }
}, },
@@ -87,7 +87,7 @@
"riskManagement": { "riskManagement": {
"enabled": true, "enabled": true,
"autoAdjustDelays": true, "autoAdjustDelays": true,
"stopOnCritical": false, "stopOnCritical": true,
"banPrediction": true, "banPrediction": true,
"riskThreshold": 75 "riskThreshold": 75
}, },