-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
44 lines (35 loc) · 972 Bytes
/
.env.example
File metadata and controls
44 lines (35 loc) · 972 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Environment variables for the advanced-memory system
# Copy this file to .env and fill in your actual values
# OpenAI Configuration
OPENAI_API_KEY=your_openai_api_key_here
OPENAI_MODEL=gpt-4o-mini
OPENAI_EMBEDDING_MODEL=text-embedding-3-small
# Neo4j Configuration
NEO4J_URI=bolt://localhost:7687
NEO4J_USERNAME=neo4j
NEO4J_PASSWORD=your_neo4j_password_here
NEO4J_DATABASE=neo4j
# Mem0 Configuration
MEM0_API_KEY=your_mem0_api_key_here
MEM0_USER_ID=default_user
# MCP Server Configuration
MCP_SERVER_HOST=0.0.0.0
MCP_SERVER_PORT=8080
MCP_SERVER_RELOAD=true
# Logging Configuration
LOG_LEVEL=INFO
LOG_FORMAT=json
# Data paths
DATA_INPUT_PATH=./data/input
DATA_OUTPUT_PATH=./data/output
GRAPH_DATA_PATH=./data/graph
# Vector Index Configuration
VECTOR_INDEX_NAME=text_embeddings
VECTOR_DIMENSION=1536
# GraphRAG Configuration
GRAPHRAG_CHUNK_SIZE=1000
GRAPHRAG_CHUNK_OVERLAP=200
GRAPHRAG_COMMUNITY_LEVEL=2
# Development/Testing
ENVIRONMENT=development
DEBUG=false