from agno.agent import Agentfrom agno.models.cerebras import CerebrasOpenAIagent = Agent( model=CerebrasOpenAI( id="llama-4-scout-17b-16e-instruct", ), markdown=True,)# Print the response in the terminal (streaming)agent.print_response("write a two sentence horror story", stream=True)