from pathlib import Pathfrom agno.agent import Agentfrom agno.media import Imagefrom agno.models.aws import AwsBedrockfrom agno.tools.duckduckgo import DuckDuckGoToolsagent = Agent( model=AwsBedrock(id="amazon.nova-pro-v1:0"), tools=[DuckDuckGoTools()], markdown=True,)image_path = Path(__file__).parent.joinpath("sample.jpg")# Read the image file content as byteswith open(image_path, "rb") as img_file: image_bytes = img_file.read()agent.print_response( "Tell me about this image and give me the latest news about it.", images=[ Image(content=image_bytes, format="jpeg"), ],)