-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env.example
More file actions
28 lines (21 loc) · 984 Bytes
/
.env.example
File metadata and controls
28 lines (21 loc) · 984 Bytes
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
# Memory Context Engine - Environment Variables
# OpenAI API Key (required for OpenAI embedding provider)
# Get your key from: https://platform.openai.com/api-keys
OPENAI_API_KEY=sk-...
# Memory Workspace Directory (optional, defaults to current directory)
# Path to directory containing MEMORY.md and memory/*.md files
MEMORY_WORKSPACE_DIR=/path/to/workspace
# Memory Database Path (optional, defaults to ./memory.db)
# SQLite database location for memory storage
MEMORY_DB_PATH=./memory.db
# Embedding Provider (optional, defaults to 'openai')
# Options: openai, local, gemini
MEMORY_EMBEDDING_PROVIDER=openai
# Embedding Model (optional, provider-specific defaults)
# OpenAI: text-embedding-3-small, text-embedding-3-large
# Gemini: gemini-embedding-001
MEMORY_EMBEDDING_MODEL=text-embedding-3-small
# Google API Key (required if using Gemini provider)
# GOOGLE_API_KEY=...
# Local Model Path (required if using local provider)
# MEMORY_LOCAL_MODEL_PATH=/path/to/model.gguf