From 13e43e106fd04b9351794c7f79370e3185a591ed Mon Sep 17 00:00:00 2001 From: Vishal Dharmadhikari <61256217+vishal-dharm@users.noreply.github.com> Date: Fri, 18 Jul 2025 18:08:03 -0700 Subject: [PATCH] Update default model Set `computer-use-exp-07-16` as the default model. Otherwise, you get a `"Thinking is not enabled for models/computer-use-exp"` error with the default model --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index f73c2fe..72f58d8 100644 --- a/main.py +++ b/main.py @@ -61,7 +61,7 @@ def main() -> int: ) parser.add_argument( "--model", - default='computer-use-exp', + default='computer-use-exp-07-16', help="Set which main model to use.", ) args = parser.parse_args()