from agno.agent import Agentfrom agno.models.mistral import MistralChatfrom agno.tools.duckduckgo import DuckDuckGoToolsfrom pydantic import BaseModelclass Person(BaseModel): name: str description: strmodel = MistralChat( id="mistral-medium-latest", temperature=0.0,)researcher = Agent( name="Researcher", model=model, role="You find people with a specific role at a provided company.", instructions=[ "- Search the web for the person described" "- Find out if they have public contact details" "- Return the information in a structured format" ], tools=[DuckDuckGoTools()], output_schema=Person, add_datetime_to_context=True,)researcher.print_response("Find information about Elon Musk")