From afe01ff8313ec86eb72c76fe5e26bae2622a1d66 Mon Sep 17 00:00:00 2001 From: James Murdza Date: Tue, 26 Aug 2025 13:06:44 -0400 Subject: [PATCH] Add missing comma in example code --- notebooks/agent_nb.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/agent_nb.ipynb b/notebooks/agent_nb.ipynb index 34b2a56a..30746780 100644 --- a/notebooks/agent_nb.ipynb +++ b/notebooks/agent_nb.ipynb @@ -302,7 +302,7 @@ "source": [ "# Create agent with Anthropic loop and provider\n", "agent = ComputerAgent(\n", - " model=\"openai/computer-use-preview\"\n", + " model=\"openai/computer-use-preview\",\n", " tools=[computer],\n", " trajectory_dir=str(Path(\"trajectories\")),\n", " only_n_most_recent_images=3,\n",