from agno.agent import Agentfrom agno.tools.memori import MemoriToolsagent = Agent( instructions=[ "You are a memory-enhanced assistant with persistent conversation history", "Remember important information about users and their preferences", "Use stored memories to provide personalized and contextual responses", ], tools=[ MemoriTools(database_connect="sqlite:///memori.db", namespace="quick-memori") ], markdown=True,)agent.print_response("Remember that I prefer vegetarian recipes and I'm learning to cook Italian cuisine")