from agno.agent import Agentfrom agno.db.postgres import PostgresDbfrom agno.models.azure import AzureAIFoundryfrom 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=AzureAIFoundry(id="Phi-4"), 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?")