from agno.agent import Agentfrom agno.tools.mem0 import Mem0Toolsagent = Agent( instructions=[ "You are a memory-enhanced assistant that can remember information across conversations", "Store important information about users and their preferences", "Retrieve relevant memories to provide personalized responses", ], tools=[Mem0Tools(user_id="user_123")], markdown=True,)agent.print_response("Remember that I prefer vegetarian meals and I'm allergic to nuts")