fix: Remove mode argument from WitnessingLayer constructor

WitnessingLayer takes: coherence_threshold, reflection_depth, integration_rate, meta_observation_weight
Not mode - that's part of WitnessingMode enum used elsewhere.
This commit is contained in:
2026-02-19 19:39:10 +00:00
parent 082e11833d
commit c72ddae7b0
-1
View File
@@ -189,7 +189,6 @@ def init_engine(
# Create witnessing layer
witnessing_layer = WitnessingLayer(
mode=WitnessingMode.INTEGRATE if witnessed_by_human else WitnessingMode.OBSERVE,
coherence_threshold=coherence_threshold,
)