-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.example
More file actions
31 lines (25 loc) · 725 Bytes
/
Copy path.env.example
File metadata and controls
31 lines (25 loc) · 725 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
# Neo4j Configuration
NEO4J_URI=bolt://localhost:7687
NEO4J_USER=neo4j
NEO4J_PASSWORD=your_password
# Ollama Configuration
OLLAMA_BASE_URL=http://localhost:11434
OLLAMA_MODEL=llama2
OLLAMA_EMBEDDING_MODEL=nomic-embed-text
# Vector Store Configuration
VECTOR_STORE_PATH=./vector_store
EMBEDDING_DIM=768 # nomic-embed-text dimension
# API Configuration
API_HOST=0.0.0.0
API_PORT=8000
API_WORKERS=4
# Logging Configuration
LOG_LEVEL=INFO
LOG_FILE=knowledge_graph.log
# Extraction Configuration
BATCH_SIZE=10
MAX_TOKENS=2000
CONFIDENCE_THRESHOLD=0.5
# Search Configuration
DEFAULT_VECTOR_WEIGHT=0.5
DEFAULT_MAX_RESULTS=10