Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ class Settings:
REDIS_URL: str = "redis://localhost:6379"
REDIS_AUTH: Optional[str] = None

# Trust Score Weights
TRUST_SCORE_W1: float = 0.5
TRUST_SCORE_W2: float = 0.3
TRUST_SCORE_W3: float = 0.2

# Trace Anomaly Detection (Isolation Forest)
# Expected fraction of anomalous traces in training data.
ANOMALY_CONTAMINATION: float = 0.1
Expand Down