from agno.agent import Agentfrom agno.models.google import Geminifrom agno.tools.whatsapp import WhatsAppToolsagent = Agent( name="whatsapp", model=Gemini(id="gemini-2.0-flash"), tools=[WhatsAppTools()],)# Example: Send a template message# Note: Replace '''hello_world''' with your actual template nameagent.print_response( "Send a template message using the '''hello_world''' template in English to +91 1234567890")