notebook.ipynb
latest_news_agent = Agent(
    role="News Collector",
    goal="Get the latest news on a given topic and gather insights",
    backstory="""You are a reporter who is responsible for
                 getting the latest news on a given topic""",
    verbose=True,
)

news_search_task = Task(
    description="Search for the latest news on {topic}",
    expected_output="A list of the latest news on a given topic",
    tool=news_search_tool,
    agent=latest_news_agent
)