fix(rollout): enable default

This commit is contained in:
Steven Palma
2026-04-22 18:47:15 +02:00
parent 682d5f2f95
commit f29ce39f39
2 changed files with 5 additions and 5 deletions
@@ -35,7 +35,7 @@ class RTCConfig:
"""
# Infrastructure
enabled: bool = False
enabled: bool = True
# Core RTC settings
# Todo change to exp
+4 -4
View File
@@ -68,10 +68,10 @@ class SyncInferenceConfig(InferenceEngineConfig):
class RTCInferenceConfig(InferenceEngineConfig):
"""Real-Time Chunking: async policy inference in a background thread."""
# Selecting ``--inference.type=rtc`` means the user wants RTC, so
# ``enabled`` defaults to True here (unlike the policy-side RTCConfig
# which defaults to False for the ``rtc_config: RTCConfig | None`` path).
rtc: RTCConfig = field(default_factory=lambda: RTCConfig(enabled=True))
# ``RTCConfig`` is a small dataclass with default-only fields, so eagerly
# constructing one here costs nothing and keeps draccus' CLI surface flat
# (``--inference.rtc.execution_horizon=...`` etc.). No need to lazy-init.
rtc: RTCConfig = field(default_factory=RTCConfig)
queue_threshold: int = 30