from agno.agent import Agentfrom agno.models.cerebras import CerebrasOpenAIagent = Agent( model=CerebrasOpenAI(id="gpt-oss-120b"), markdown=True,)# Print the response in the terminalagent.print_response("write a two sentence horror story", stream=True)