-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.env.example
More file actions
35 lines (28 loc) · 900 Bytes
/
.env.example
File metadata and controls
35 lines (28 loc) · 900 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
# Production SEO settings
# Set to "index, follow" to enable search engine indexing
# Set to "noindex, nofollow" (or leave blank) to prevent indexing
ROBOTS_META="noindex, nofollow"
# Rate Limiting (Requests per engine per minute)
RATE_LIMIT_REQUESTS=60
RATE_LIMIT_WINDOW=60
# Backend Features
API_AI_ENDPOINT_ENABLE="false"
API_REGEX_ENDPOINT_ENABLE="true"
# AI Worker Settings
AI_MAX_WORKERS="2"
LLM_ENDPOINT="https://api.openai.com/v1"
LLM_MODEL="gpt-4o"
LLM_API_KEY="sk-..."
LLM_SSL_VERIFY="true"
# Worker Execution Limits (Applied across all regex workers)
WORKER_EXECUTION_TIMEOUT_MS=1000
WORKER_MAX_INPUT_SIZE=10485760 # 10MB default
WORKER_MAX_MATCHES=10000
WORKER_MAX_GROUPS=1000
WORKER_MAX_JSON_SIZE=10485760 # 10MB defaul
# Only for developers custom tools
## LLM
DEV_LLM_ENDPOINT="https://api.openai.com/v1"
DEV_LLM_MODEL="gpt-4o"
DEV_LLM_API_KEY="sk-..."
DEV_LLM_SSL_VERIFY="true"