diff --git a/bantam.py b/bantam.py index 831670f..77a6803 100755 --- a/bantam.py +++ b/bantam.py @@ -25,7 +25,7 @@ def col(cfg): except Exception: return False def get_cfg(path="model.cfg"): - d = {"endpoint": "https://opencode.ai/zen/v1", "model": "deepseek-v4-flash-free", "temperature": "0.7", "api_key": "-", "timeout": "60", "shell_timeout": "120", "max_al_iterations": "1000", "stream": "true", "color": "auto"} + d = {"endpoint": "https://opencode.ai/zen/v1", "model": "big-pickle", "temperature": "0.7", "api_key": "-", "timeout": "60", "shell_timeout": "120", "max_al_iterations": "1000", "stream": "true", "color": "auto"} if os.path.exists(path): for ln in open(path, encoding="utf-8"): ln = ln.strip() diff --git a/main.go b/main.go index 62d091e..4165720 100644 --- a/main.go +++ b/main.go @@ -44,7 +44,7 @@ type Cfg struct { Color string } -var defCfg = Cfg{"https://opencode.ai/zen/v1", "deepseek-v4-flash-free", "-", 0.7, 300, 120, 1000, true, "auto"} +var defCfg = Cfg{"https://opencode.ai/zen/v1", "big-pickle", "-", 0.7, 300, 120, 1000, true, "auto"} func atoiD(s string, d int) int { if v, e := strconv.Atoi(strings.TrimSpace(s)); e == nil {