from agno.agent import Agent, RunOutput # noqafrom agno.models.cometapi import CometAPIagent = Agent(model=CometAPI(id="gpt-5-mini"), markdown=True)# Get the response in a variable# run: RunOutput = agent.run("Explain quantum computing in simple terms")# print(run.content)# Print the response in the terminalagent.print_response("Explain quantum computing in simple terms")