Framework Integrations
AMFS integrates with popular multi-agent frameworks so you can add persistent memory to your existing workflows.Setup
Set your connection env vars — all framework integrations pick them up automatically:CrewAI
Add AMFS tools to your CrewAI agents:LangGraph
Use AMFS as a checkpointer for LangGraph:LangChain
Use AMFS as chat memory for LangChain:AutoGen
Use AMFS as a memory store for AutoGen agents:Building Your Own Integration
All integrations are thin wrappers around theAgentMemory API. To build your own:
- Accept an
AgentMemoryinstance in your constructor - Map your framework’s memory/tool API to
mem.read(),mem.write(),mem.list(), etc. - Use
entity_pathto scope data (e.g., per-conversation, per-task, per-agent)
