Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 672 Bytes

File metadata and controls

23 lines (16 loc) · 672 Bytes

agent-memory

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-memory
from 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.