from agno.agent import Agentfrom agno.tools.brandfetch import BrandfetchToolsagent = Agent( instructions=[ "You are a brand research assistant that helps find brand information", "Use Brandfetch to retrieve logos, colors, and other brand assets", "Provide comprehensive brand information when requested", ], tools=[BrandfetchTools()], markdown=True,)agent.print_response("Find brand information for Apple Inc.")