Skip to main content

CrewAI Integration

Z3rno provides Z3rnoCrewAIStorage, a storage adapter that implements CrewAI’s memory interface. This lets multiple CrewAI agents share persistent memory backed by Z3rno.

Installation

Setup

Memory Type Mapping

CrewAI’s memory categories map to Z3rno memory types:

Basic Usage

Shared Memory Across Agents

The primary advantage of using Z3rno with CrewAI is that multiple agents can share a memory store. Use the same agent_id across agents to create a shared memory space, or use different agent_id values for isolated memories.

With CrewAI’s Memory System

When configuring a CrewAI Crew, pass the Z3rno storage as the memory backend:

Next Steps