The code given in the [agents-course](https://github.com/huggingface/agents-course/tree/main)/[units](https://github.com/huggingface/agents-course/tree/main/units)/[en](https://github.com/huggingface/agents-course/tree/main/units/en)/[unit1](https://github.com/huggingface/agents-course/tree/main/units/en/unit1) /tutorial.mdx is different from the one given in the [repository](https://huggingface.co/spaces/agents-course/First_agent_template/tree/main). - The code in the tutorial is importing the tools from smolagents library. ``` python from smolagents import CodeAgent, DuckDuckGoSearchTool, FinalAnswerTool, InferenceClientModel, load_tool, tool import datetime import requests import pytz import yaml ``` - The code in the [repository](https://huggingface.co/spaces/agents-course/First_agent_template/tree/main) maintains the tools in a directory and are imported from there. <img width="983" height="315" alt="Image" src="https://github.com/user-attachments/assets/1966a3ce-17b9-42d9-a0e0-9c2e1153594a" />