Appearance
Installation
Get MemoryBench up and running in your environment
Prerequisites
- Bun runtime installed
- API keys for providers and LLM judges you want to use
Install MemoryBench
bash
git clone
cd memorybench
bun installConfigure API Keys
Create a .env.local file in the root directory:
bash
# Memory Providers (add keys for providers you want to test)
SUPERMEMORY_API_KEY=your_key
MEM0_API_KEY=your_key
ZEP_API_KEY=your_key
# LLM Judges (at least one required)
OPENAI_API_KEY=your_key
ANTHROPIC_API_KEY=your_key
GOOGLE_API_KEY=your_keyINFO
You only need API keys for the providers and judges you plan to use. For example, to benchmark Supermemory with GPT-4o as judge, you only need SUPERMEMORY_API_KEY and OPENAI_API_KEY.
Verify Installation
bash
bun run src/index.ts helpYou should see the list of available commands.
Start the Web Interface
bash
bun run src/index.ts serveOpens at
Next Steps
- CLI Reference - Play around with MemoryBench
- Architecture - Understand how MemoryBench works
- Extend MemoryBench - Add custom providers, benchmarks, and prompts