from agno.agent import Agentfrom agno.media import Imagefrom agno.models.dashscope import DashScopefrom agno.tools.hackernews import HackerNewsToolsagent = Agent( model=DashScope(id="qwen-vl-plus"), tools=[HackerNewsTools()], markdown=True,)agent.print_response( "Analyze this image in detail and tell me what you see. Also search for more information about the subject.", images=[ Image( url="https://upload.wikimedia.org/wikipedia/commons/0/0c/GoldenGateBridge-001.jpg" ) ], stream=True,)