from agno.agent import Agentfrom agno.models.litellm import LiteLLMfrom agno.db.sqlite import SqliteDbfrom agno.tools.hackernews import HackerNewsTools# Setup the databasedb = SqliteDb( db_file="tmp/data.db",)# Add storage to the Agentagent = Agent( model=LiteLLM(id="gpt-5-mini"), db=db, tools=[HackerNewsTools()], add_history_to_context=True,)agent.print_response("How many people live in Canada?")agent.print_response("What is their national anthem called?")