-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
43 lines (38 loc) · 1.01 KB
/
.env.example
File metadata and controls
43 lines (38 loc) · 1.01 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
# Application Configuration
APP_NAME=AI-Agent
APP_VERSION=1.0.0
DEBUG=false
LOG_LEVEL=DEBUG
# LLM Configuration - Together.ai
LLM_PROVIDER=together
TOGETHER_API_KEY=your_together_api_key
TOGETHER_MODEL=Qwen/Qwen2.5-VL-72B-Instruct
TOGETHER_BASE_URL=https://api.together.xyz/v1/chat/completions
LLM_MAX_TOKENS=2000
LLM_TEMPERATURE=0.7
LLM_TIMEOUT=30
# MCP Server Configuration
MCP_SERVER_HOST=localhost
MCP_SERVER_PORT=8000
MCP_SERVER_TIMEOUT=30
# MCP Configuration - stdio protocol (recommended) - using relative path
MCP_COMMAND=../../../openresearch-mcp-server/venv/bin/python
MCP_ARGS=["../../../openresearch-mcp-server/src/main.py"]
MCP_CWD=../../../openresearch-mcp-server
MCP_TIMEOUT=30
MCP_MAX_RETRIES=3
MCP_RETRY_DELAY=1.0
MCP_ENABLE_DEBUG_LOG=false
MCP_DEBUG_LOG_FILE=logs/mcp_debug.log
MCP_SERVER_TIMEOUT=60
# Cache Configuration
CACHE_TYPE=memory
CACHE_TTL=3600
# Database Configuration
DB_HOST=localhost
DB_PORT=5432
DB_NAME=openrearch
DB_USER=postgres
DB_PASSWORD=1234qwer
DB_MAX_CONNECTIONS=30
DB_SKIP_IN_DEV=false