From dd84e7333dd94d20ed5d9e827c2e8d7a0ea53ae3 Mon Sep 17 00:00:00 2001 From: hante <85827256+hanteed@users.noreply.github.com> Date: Mon, 3 Feb 2025 17:16:56 +0100 Subject: [PATCH] Fixed demo typo in README.md (#481) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 928b65d..33bfac7 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ Then define your agent, give it the tools it needs and run it! ```py from smolagents import CodeAgent, DuckDuckGoSearchTool, HfApiModel -mdoel = HfApiModel() +model = HfApiModel() agent = CodeAgent(tools=[DuckDuckGoSearchTool()], model=model) agent.run("How many seconds would it take for a leopard at full speed to run through Pont des Arts?")