from resilix import ResilixMemoryClient
Initialize client
client = ResilixMemoryClient(api_key="YOUR_API_KEY")
Store a new contextual memory
client.memory.save( user_id="user_1029", fact="Prefers lightweight Markdown formatting for project roadmaps", category="preference" )
Retrieve relevant facts for a session
context = client.memory.query( user_id="user_1029", prompt="Generate a schedule draft" )
print(context)

Log in or sign up for Devpost to join the conversation.