Skip to content

Commit 08120e5

Browse files
committed
fix:mv env to docker
1 parent 668a8d7 commit 08120e5

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

docker/.env.example

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# MemOS Environment Variables Configuration
2+
3+
# Path to memory storage (e.g. /tmp/data_test)
4+
MOS_CUBE_PATH=
5+
6+
# OpenAI Configuration
7+
OPENAI_API_KEY= # Your OpenAI API key
8+
OPENAI_API_BASE= # OpenAI API base URL (default: https://api.openai.com/v1)
9+
10+
# MemOS Feature Toggles
11+
MOS_ENABLE_DEFAULT_CUBE_CONFIG= # Enable default cube config (true/false)
12+
MOS_ENABLE_SCHEDULER= # Enable background scheduler (true/false)
13+
14+
# Neo4j Configuration
15+
NEO4J_URI= # Neo4j connection URI (e.g. bolt://localhost:7687)
16+
NEO4J_USER= # Neo4j username
17+
NEO4J_PASSWORD= # Neo4j password
18+
MOS_NEO4J_SHARED_DB= # Shared Neo4j database name (if using multi-db)
19+
20+
# MemOS User Configuration
21+
MOS_USER_ID= # Unique user ID
22+
MOS_SESSION_ID= # Session ID for current chat
23+
MOS_MAX_TURNS_WINDOW= # Max number of turns to keep in memory
24+
25+
# Ollama Configuration (for local embedding models)
26+
OLLAMA_API_BASE= # Ollama API base URL (e.g. http://localhost:11434)
27+
28+
# Embedding Configuration
29+
MOS_EMBEDDER_BACKEND= # Embedding backend: openai, ollama, etc.

0 commit comments

Comments
 (0)