from agno.agent import Agentfrom agno.models.litellm import LiteLLMfrom agno.storage.sqlite import SqliteStoragefrom agno.tools.duckduckgo import DuckDuckGoTools# Create a storage backend using the Sqlite databasestorage = SqliteStorage( # store sessions in the ai.sessions table table_name="agent_sessions_storage", # db_file: Sqlite database file db_file="tmp/data.db",)# Add storage to the Agentagent = Agent( model=LiteLLM(id="gpt-4o"), storage=storage, tools=[DuckDuckGoTools()], add_history_to_messages=True,)agent.print_response("How many people live in Canada?")agent.print_response("What is their national anthem called?")