from agno.agent import Agentfrom agno.tools.gmail import GmailToolsagent = Agent( name="Gmail Agent", tools=[GmailTools()], instructions=[ "Based on user query, you can read, draft and send emails using Gmail.", "While showing email contents, you can summarize the email contents, extract key details and dates.", "Show the email contents in a structured markdown format.", ], markdown=True, show_tool_calls=True,)# Send a reply to an emailagent.print_response( "Send a reply to the last email saying 'Thank you for your message. I'll get back to you soon.'", stream=True,)