Give your AI agent memory. It remembers what worked.
This package is a convenience wrapper for agent-episodic-memory. Both packages are identical. Use whichever name you prefer.
pip install agent-memoryfrom agent_memory import ACEMiddleware
agent = create_agent(
model="anthropic:claude-sonnet-4-6",
tools=[...],
middleware=[ACEMiddleware()],
)Your agent now remembers what worked and what didn't across runs. No setup. No database. It just learns.
For full documentation, see agent-episodic-memory.