from agno.agent import Agentfrom agno.db.sqlite import SqliteDbfrom agno.models.google import GeminiInteractionsagent = Agent( model=GeminiInteractions(id="gemini-3-flash-preview"), add_history_to_context=True, db=SqliteDb(db_file="tmp/data.db"), markdown=True,)if __name__ == "__main__": # First turn - establishes the interaction agent.print_response("My name is Alice and I love hiking in the mountains.") # Second turn - references the previous interaction for context agent.print_response("What did I just tell you about myself?") # Third turn - continues the conversation chain agent.print_response( "Suggest a hiking destination based on what you know about me." )