-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy path.env.example
More file actions
26 lines (22 loc) · 962 Bytes
/
.env.example
File metadata and controls
26 lines (22 loc) · 962 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
# Memorix Environment Variables
# Copy this file to .env and fill in your actual values.
#
# Secrets go here. Behavior settings go in memorix.yml
# Run "memorix init" to generate both files interactively.
# ── LLM API Key ──
# Required only if llm.provider is set in memorix.yml
# MEMORIX_LLM_API_KEY=sk-your-key-here
# MEMORIX_LLM_BASE_URL=https://api.openai.com/v1
# ── Embedding API Key ──
# Required only if embedding.provider is "api" in memorix.yml
# Falls back to MEMORIX_LLM_API_KEY if not set
# MEMORIX_EMBEDDING_API_KEY=sk-your-key-here
# MEMORIX_EMBEDDING_BASE_URL=https://api.openai.com/v1
# ── Unified Key (optional) ──
# Single key that works for both LLM and Embedding
# MEMORIX_API_KEY=sk-your-key-here
# ── Compatibility Keys (lowest priority) ──
# Standard provider env vars — used as fallback if MEMORIX_* keys not set
# OPENAI_API_KEY=sk-...
# ANTHROPIC_API_KEY=sk-ant-...
# OPENROUTER_API_KEY=sk-or-...