forked from mem0ai/memory-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (31 loc) · 1.56 KB
/
Copy path.env.example
File metadata and controls
36 lines (31 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# =============================================================================
# Memory Benchmarks — Environment Configuration
# =============================================================================
# Copy to .env and fill in your values: cp .env.example .env
# ---------------------------------------------------------------------------
# Required: LLM Provider (for answer generation, judging, AND Mem0 extraction)
# ---------------------------------------------------------------------------
OPENAI_API_KEY=your_openai_api_key
# Optional: Other LLM providers (for answer/judge models)
# ANTHROPIC_API_KEY=your_anthropic_api_key
# AZURE_OPENAI_API_KEY=your_azure_key
# AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com
# ---------------------------------------------------------------------------
# Mem0 Backend — OSS Server (default)
# ---------------------------------------------------------------------------
# Start with: docker compose up -d
# The server runs at http://localhost:8888 by default.
MEM0_HOST=http://localhost:8888
MEM0_BACKEND=oss
# Server model config (override in docker-compose or here)
# LLM_MODEL=gpt-4o-mini
# EMBEDDER_MODEL=text-embedding-3-small
# ---------------------------------------------------------------------------
# Mem0 Backend — Cloud (alternative)
# ---------------------------------------------------------------------------
# To use Mem0 cloud instead of self-hosted:
# MEM0_BACKEND=cloud
# MEM0_HOST=https://api.mem0.ai
# MEM0_API_KEY=your_mem0_api_key
# MEM0_ORGANIZATION_ID=your_org_id
# MEM0_PROJECT_ID=your_project_id