forked from MemTensor/MemOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (22 loc) · 1.09 KB
/
.env.example
File metadata and controls
29 lines (22 loc) · 1.09 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
# MemOS Environment Variables Configuration
# Path to memory storage (e.g. /tmp/data_test)
MOS_CUBE_PATH=
# OpenAI Configuration
OPENAI_API_KEY= # Your OpenAI API key
OPENAI_API_BASE= # OpenAI API base URL (default: https://api.openai.com/v1)
# MemOS Feature Toggles
MOS_ENABLE_DEFAULT_CUBE_CONFIG= # Enable default cube config (true/false)
MOS_ENABLE_SCHEDULER= # Enable background scheduler (true/false)
# Neo4j Configuration
NEO4J_URI= # Neo4j connection URI (e.g. bolt://localhost:7687)
NEO4J_USER= # Neo4j username
NEO4J_PASSWORD= # Neo4j password
MOS_NEO4J_SHARED_DB= # Shared Neo4j database name (if using multi-db)
# MemOS User Configuration
MOS_USER_ID= # Unique user ID
MOS_SESSION_ID= # Session ID for current chat
MOS_MAX_TURNS_WINDOW= # Max number of turns to keep in memory
# Ollama Configuration (for local embedding models)
OLLAMA_API_BASE= # Ollama API base URL (e.g. http://localhost:11434)
# Embedding Configuration
MOS_EMBEDDER_BACKEND= # Embedding backend: openai, ollama, etc.