-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (30 loc) · 1.08 KB
/
Copy path.env.example
File metadata and controls
37 lines (30 loc) · 1.08 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
37
# HelixMemory Configuration
# Copy to .env and adjust values for your environment
# Backend Endpoints
HELIX_MEMORY_LETTA_ENDPOINT=http://localhost:8283
HELIX_MEMORY_MEM0_ENDPOINT=http://localhost:8001
HELIX_MEMORY_COGNEE_ENDPOINT=http://localhost:8000
HELIX_MEMORY_GRAPHITI_ENDPOINT=http://localhost:8003
# Infrastructure
HELIX_MEMORY_QDRANT_ENDPOINT=http://localhost:6333
HELIX_MEMORY_NEO4J_ENDPOINT=bolt://localhost:7687
HELIX_MEMORY_NEO4J_USER=neo4j
HELIX_MEMORY_NEO4J_PASSWORD=helixmemory
HELIX_MEMORY_REDIS_ENDPOINT=localhost:6379
HELIX_MEMORY_REDIS_PASSWORD=
# Fusion Engine
HELIX_MEMORY_FUSION_DEDUP_THRESHOLD=0.92
# Consolidation (Sleep-Time Compute)
HELIX_MEMORY_CONSOLIDATION_ENABLED=true
HELIX_MEMORY_CONSOLIDATION_INTERVAL=30m
# Circuit Breaker
HELIX_MEMORY_CIRCUIT_BREAKER_THRESHOLD=5
HELIX_MEMORY_CIRCUIT_BREAKER_TIMEOUT=30s
# General
HELIX_MEMORY_DEFAULT_TOP_K=10
HELIX_MEMORY_REQUEST_TIMEOUT=10s
HELIX_MEMORY_ENABLE_METRICS=true
# Embedding
HELIX_MEMORY_EMBEDDING_MODEL=text-embedding-3-small
HELIX_MEMORY_EMBEDDING_ENDPOINT=http://localhost:8100/v1
HELIX_MEMORY_EMBEDDING_DIMENSION=1536