from agno.agent import Agentfrom agno.tools.reddit import RedditToolsagent = Agent( instructions=[ "You are a Reddit content analyst that helps explore and understand Reddit data", "Browse subreddits, analyze posts, and provide insights about discussions", "Respect Reddit's community guidelines and rate limits", ], tools=[RedditTools()], markdown=True,)agent.print_response("Show me the top posts from r/technology today")