feat: ship streaming disabled by default — opt-in via config

Streaming is now off by default for both CLI and gateway. Users opt in:

CLI (config.yaml):
  display:
    streaming: true

Gateway (config.yaml):
  streaming:
    enabled: true

This lets early adopters test streaming while existing users see zero
change. Once we have enough field validation, we flip the default to
true in a subsequent release.
This commit is contained in:
teknium1 2026-03-16 07:44:42 -07:00
parent fc4080c58a
commit c0b88018eb
3 changed files with 7 additions and 3 deletions

View file

@ -149,7 +149,7 @@ class PlatformConfig:
@dataclass
class StreamingConfig:
"""Configuration for real-time token streaming to messaging platforms."""
enabled: bool = True
enabled: bool = False
transport: str = "edit" # "edit" (progressive editMessageText) or "off"
edit_interval: float = 0.3 # Seconds between message edits
buffer_threshold: int = 40 # Chars before forcing an edit
@ -169,7 +169,7 @@ class StreamingConfig:
if not data:
return cls()
return cls(
enabled=data.get("enabled", True),
enabled=data.get("enabled", False),
transport=data.get("transport", "edit"),
edit_interval=float(data.get("edit_interval", 0.3)),
buffer_threshold=int(data.get("buffer_threshold", 40)),