-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.env
More file actions
33 lines (25 loc) · 1.15 KB
/
Copy path.env
File metadata and controls
33 lines (25 loc) · 1.15 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
# .env - Enable v3 features
# =============================================================================
# v3 RAG Graph Features (Phase 1: RAG Graph Foundation)
# =============================================================================
# Enable RAG Graph for historical incident retrieval
RAG_ENABLED=true
# RAG Graph configuration
RAG_SIMILARITY_THRESHOLD=0.3
RAG_MAX_INCIDENT_NODES=1000
RAG_MAX_OUTCOME_NODES=5000
RAG_CACHE_SIZE=100
# =============================================================================
# v3 MCP Server Features (Phase 2: Execution Boundary)
# =============================================================================
# MCP Server execution mode: advisory, approval, or autonomous
MCP_MODE=advisory
# Enable MCP Server for execution boundaries
MCP_ENABLED=true
# =============================================================================
# v3 Learning Loop Features (Phase 3: Continuous Improvement)
# =============================================================================
# Enable learning from historical outcomes
LEARNING_ENABLED=true
# Minimum data points before applying learned patterns
LEARNING_MIN_DATA_POINS=10