import asynciofrom agno.agent import Agentfrom agno.models.meta import Llamaagent = Agent(model=Llama(id="Llama-4-Maverick-17B-128E-Instruct-FP8"), markdown=True)# Get the response in a variable# async def main():# async for chunk in agent.arun("Share a 2 sentence horror story", stream=True):# print(chunk.content, end="", flush=True)# Print the response in the terminalasyncio.run(agent.aprint_response("Share a 2 sentence horror story", stream=True))