From 1e745c7a3495ba63518b360e4b0c08ce36a155e3 Mon Sep 17 00:00:00 2001 From: Derek Alia Date: Tue, 21 Jan 2025 02:03:51 -0800 Subject: [PATCH] Update building_good_agents.md (#283) --- docs/source/en/tutorials/building_good_agents.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/en/tutorials/building_good_agents.md b/docs/source/en/tutorials/building_good_agents.md index 6cef92d..bc51656 100644 --- a/docs/source/en/tutorials/building_good_agents.md +++ b/docs/source/en/tutorials/building_good_agents.md @@ -273,7 +273,7 @@ image_generation_tool = load_tool("m-ric/text-to-image", trust_remote_code=True) search_tool = DuckDuckGoSearchTool() agent = CodeAgent( - tools=[search_tool], + tools=[search_tool, image_generation_tool], model=HfApiModel("Qwen/Qwen2.5-72B-Instruct"), planning_interval=3 # This is where you activate planning! )