-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env.example
More file actions
56 lines (43 loc) · 1.57 KB
/
.env.example
File metadata and controls
56 lines (43 loc) · 1.57 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# =============================
# MCP Framework - Environment Variables
# =============================
# Application Environment
APP_ENV=dev # dev | prod
LOG_LEVEL=INFO # DEBUG | INFO | WARNING | ERROR
# =============================
# LLM Provider Configuration
# =============================
# LLM Provider Selection
LLM_PROVIDER=azure # azure | openai | anthropic (future)
# Azure OpenAI Configuration
AZURE_OPENAI_API_KEY=your_azure_openai_api_key_here
AZURE_OPENAI_ENDPOINT=https://your-resource-name.openai.azure.com
AZURE_OPENAI_DEPLOYMENT=gpt-4o-mini # Default deployment name
# OpenAI Configuration (if using OpenAI directly)
OPENAI_API_KEY=your_openai_api_key_here
OPENAI_MODEL=gpt-4o
# =============================
# Memory Configuration
# =============================
# Redis Configuration
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_DB=0
REDIS_PREFIX=mcp
MEMORY_TYPE=redis # redis | vector | hybrid
MEMORY_TTL=86400 # Time-to-live in seconds (24 hours)
# =============================
# LangGraph Configuration
# =============================
GRAPH_EXEC_MODE=local # local | async | distributed
GRAPH_MAX_DEPTH=5 # Maximum graph execution depth
# =============================
# External Services (Optional)
# =============================
# RAG API URL (if using external RAG service)
RAG_API_URL=http://localhost:8002/api/v1/search
# =============================
# CORS Configuration (for production)
# =============================
# CORS_ALLOWED_ORIGINS=http://localhost:3000,https://yourdomain.com
# Leave empty or unset to allow all origins (development only)