added default reasoning_effort

This commit is contained in:
Luxferre
2026-09-02 08:58:28 +03:00
parent f17f15aea8
commit c64e79b22f
5 changed files with 12 additions and 3 deletions
+3
View File
@@ -273,6 +273,9 @@ func TestGetCfgDefaults(t *testing.T) {
if !cfg.Stream || cfg.Color != "auto" {
t.Errorf("default stream/color mismatch: %+v", cfg)
}
if cfg.Raw["reasoning_effort"] != "high" {
t.Errorf("default reasoning_effort = %q, want high", cfg.Raw["reasoning_effort"])
}
}
func TestGetCfgParsesFile(t *testing.T) {