from agno.agent import Agentfrom agno.models.nebius import Nebiusagent = Agent( model=Nebius(), show_tool_calls=True, markdown=True, debug_mode=True,)# Print the response in the terminalagent.print_response("write a two sentence horror story", stream=True)