"""Run `pip install ddgs sqlalchemy anthropic` to install dependencies."""from agno.agent import Agentfrom agno.db.postgres import PostgresDbfrom agno.models.azure import AzureOpenAIfrom agno.tools.duckduckgo import DuckDuckGoTools# Setup the databasedb_url = "postgresql+psycopg://ai:ai@localhost:5532/ai"db = PostgresDb(db_url=db_url)agent = Agent( model=AzureOpenAI(id="gpt-5-mini"), db=db, tools=[DuckDuckGoTools()], add_history_to_context=True,)agent.print_response("How many people live in Canada?")agent.print_response("What is their national anthem called?")