import timefrom agno.agent import Agentfrom agno.models.openai import OpenAIChatfrom agno.tools.zep import ZepTools# Initialize the ZepToolszep_tools = ZepTools(user_id="agno", session_id="agno-session", add_instructions=True)# Initialize the Agentagent = Agent( model=OpenAIChat(), tools=[zep_tools], context={"memory": zep_tools.get_zep_memory(memory_type="context")}, add_context=True,)# Interact with the Agent so that it can learn about the useragent.print_response("My name is John Billings")agent.print_response("I live in NYC")agent.print_response("I'm going to a concert tomorrow")# Allow the memories to sync with Zep databasetime.sleep(10)# Refresh the contextagent.context["memory"] = zep_tools.get_zep_memory(memory_type="context")# Ask the Agent about the useragent.print_response("What do you know about me?")