feat: enable streaming by default in CLI

Streaming provides a better UX — tokens appear as they arrive instead
of waiting for the full response. show_reasoning remains false so
thinking blocks are not streamed to the user.
This commit is contained in:
Teknium
2026-03-21 09:49:47 -07:00
parent d70e07fc45
commit c4e787d47b
2 changed files with 3 additions and 3 deletions

2
cli.py
View File

@@ -216,7 +216,7 @@ def load_cli_config() -> Dict[str, Any]:
"compact": False,
"resume_display": "full",
"show_reasoning": False,
"streaming": False,
"streaming": True,
"skin": "default",
},