from agno.agent import Agentfrom agno.db.postgres import PostgresDbfrom agno.models.lmstudio import LMStudiofrom agno.tools.hackernews import HackerNewsTools# Setup the databasedb_url = "postgresql+psycopg://ai:ai@localhost:5532/ai"db = PostgresDb(db_url=db_url)agent = Agent( model=LMStudio(id="qwen2.5-7b-instruct-1m"), 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?")