-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
36 lines (30 loc) · 1001 Bytes
/
.env.example
File metadata and controls
36 lines (30 loc) · 1001 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
# SearchAgentService Global Configuration
# ============================================
# Timeouts (seconds)
# ============================================
# Default timeout for HTTP connect/write/pool operations
HTTP_TIMEOUT=300
# Request timeout for LLM/API calls (also used as HTTP read timeout)
REQUEST_TIMEOUT=2000
# ============================================
# Retry Configuration
# ============================================
MAX_RETRY=10
RETRY_INTERVAL=5
# ============================================
# Execution Limits
# ============================================
MAX_ITERATIONS=50
MAX_TOOL_CALLS_PER_TURN=5
MAX_TOOL_RESPONSE_LENGTH=8192
# ============================================
# Connection Pool (per task instance)
# ============================================
MAX_CONNECTIONS=256
MAX_KEEPALIVE_CONNECTIONS=64
KEEPALIVE_EXPIRY=10.0
# ============================================
# Global Proxy
# ============================================
http_proxy=""
https_proxy=""