feat: init

This commit is contained in:
2026-01-30 19:41:16 +01:00
commit 76581db30b
9 changed files with 467 additions and 0 deletions

19
config.py Normal file
View File

@@ -0,0 +1,19 @@
# config.py
SYNC_CONFIG = {
# Sampling
"sample_count": 20,
"scan_duration_sec": 45,
# Matching
"min_match_count": 3,
"min_match_score": 0.70,
"search_window_sec": 30,
# Logic & Decision Thresholds
"fix_drift": True,
"correction_method": "auto", # Options: "auto", "constant", "force_elastic"
"jitter_tolerance_ms": 300,
"min_drift_slope": 0.00005,
"linear_r2_threshold": 0.80,
}