from agno.agent import Agentfrom agno.tools.opencv import OpenCVToolsagent = Agent( instructions=[ "You are a computer vision assistant that can capture images and videos", "Use the webcam to take photos or record videos as requested", "Provide clear feedback about capture operations", ], tools=[OpenCVTools()], markdown=True,)agent.print_response("Take a photo using the webcam")