-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.env.example
More file actions
55 lines (48 loc) · 1.79 KB
/
Copy path.env.example
File metadata and controls
55 lines (48 loc) · 1.79 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
# =============================================================================
# Preclinical Environment Template
# =============================================================================
# Copy to .env and fill values required for your setup.
# =============================================================================
# Server Core
# =============================================================================
PORT=8000
NODE_ENV=development
DATABASE_URL=postgres://postgres:preclinical@localhost:5432/preclinical
# Used by docker-compose for the Postgres container
DB_PASSWORD=preclinical
VITE_API_URL=http://localhost:8000
LOG_LEVEL=info
LOG_FORMAT=pretty
# =============================================================================
# LLM Runtime
# =============================================================================
OPENAI_API_KEY=
OPENAI_BASE_URL=https://api.openai.com/v1
ANTHROPIC_API_KEY=
TESTER_MODEL=gpt-4o-mini
TESTER_TEMPERATURE=0.2
GRADER_MODEL=gpt-4o-mini
GRADER_TEMPERATURE=0.1
WORKER_CONCURRENCY=5
# Turn limits (per scenario conversation)
DEFAULT_MAX_TURNS=11
MIN_MAX_TURNS=5
MAX_MAX_TURNS=15
# Per-turn intent analysis (benchmark mode)
ENABLE_TURN_INTENTS=true
TURN_INTENT_MODEL=gpt-4o-mini
# Response validation (detect error pages vs genuine responses)
ENABLE_RESPONSE_VALIDATION=false
RESPONSE_VALIDATION_MODEL=gpt-4o-mini
RESPONSE_VALIDATION_RETRIES=2
# Graph timeouts (ms)
PLANNING_TIMEOUT_MS=60000
TURN_TIMEOUT_MS=30000
COVERAGE_TIMEOUT_MS=60000
GRADING_TIMEOUT_MS=120000
# =============================================================================
# Provider Keys (optional by provider)
# =============================================================================
# Browser Use Cloud (https://www.browser-use.com/)
# Required for browser-based testing.
BROWSER_USE_API_KEY=