from agno.agent import Agentfrom agno.media import Imagefrom agno.models.meta import Llamaagent = Agent( model=Llama(id="Llama-4-Maverick-17B-128E-Instruct-FP8"), markdown=True,)agent.print_response( "Describe the scene in this image.", images=[Image(content=image_bytes)], stream=True,)