-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (24 loc) · 1.45 KB
/
.env.example
File metadata and controls
31 lines (24 loc) · 1.45 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
# ── OPTION A: Hosted mode (no database needed) ────────────────────────────
# Get an API key with: npx clude-bot register
CORTEX_API_KEY=
# Optional: override the hosted API base URL (default: https://cluude.ai)
# CORTEX_BASE_URL=https://cluude.ai
# ── OPTION B: Self-hosted mode ─────────────────────────────────────────────
SUPABASE_URL=
SUPABASE_KEY=
# Required for: LLM importance scoring, dream cycles
ANTHROPIC_API_KEY=
# Optional: customise the importance scoring prompt (personalise for your context)
# CLUDE_IMPORTANCE_PROMPT=You rate how important information is to <name>. Rate 1–10. Reply with a single integer only.
# Optional: memory protocol thresholds (used by the agent_memory_protocol prompt)
# MEMORY_TURN_THRESHOLD=10 # store highlights + checkpoint every N conversation turns
# MEMORY_IMPORTANCE_THRESHOLD=0.4 # minimum score (0–1) to store an episodic memory
# Optional: vector embeddings (comment out to fall back to keyword-only search)
# provider: "voyage" (recommended) or "openai"
EMBEDDING_PROVIDER=voyage
VOYAGE_API_KEY=
# OPENAI_API_KEY=
# Optional: local memory explorer (browse + 3D visualization in browser)
# Set a port to enable. Explorer starts automatically with the MCP server.
# Access at http://localhost:<port> while a Claude Code session is running.
# EXPLORER_PORT=3141