-
Notifications
You must be signed in to change notification settings - Fork 142
Expand file tree
/
Copy path.env.example
More file actions
62 lines (47 loc) · 2.5 KB
/
.env.example
File metadata and controls
62 lines (47 loc) · 2.5 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
57
58
59
60
61
62
# =============================================================================
# Required
# =============================================================================
# Redis connection URL for step caching and global state persistence
REDIS_URL=redis://localhost:6379
# Anthropic API key (used for playwright generation, assertions)
ANTHROPIC_API_KEY=sk-ant-...
# Google Generative AI API key (used for step execution, assertions, extraction)
GOOGLE_GENERATIVE_AI_API_KEY=AIza...
# =============================================================================
# Optional: AI Gateway
# =============================================================================
# Required only if ai.gateway is set to "vercel" in configure()
# AI_GATEWAY_API_KEY=
# =============================================================================
# Optional: OpenRouter
# =============================================================================
# Required only if ai.gateway is set to "openrouter" in configure()
# OPENROUTER_API_KEY=sk-or-...
# =============================================================================
# Optional: Cloudflare AI Gateway
# =============================================================================
# Required only if ai.gateway is set to "cloudflare" in configure().
# Requests are routed through Cloudflare to the upstream provider's native API
# (google-ai-studio, anthropic), so you still need the provider keys above.
# CLOUDFLARE_ACCOUNT_ID=
# CLOUDFLARE_AI_GATEWAY=
# CLOUDFLARE_AI_GATEWAY_API_KEY=
# =============================================================================
# Optional: CUA mode (OpenAI computer-use agent)
# =============================================================================
# Required only if ai.mode is set to "cua" in configure().
# CUA requires direct OpenAI access (gateway: "none") and an API key with
# access to the CUA model (default: gpt-5.5) and the built-in `computer`
# tool on the Responses API.
# OPENAI_API_KEY=sk-...
# =============================================================================
# Optional: Telemetry (Axiom)
# =============================================================================
# Both must be set to enable Axiom tracing
# AXIOM_TOKEN=
# AXIOM_DATASET=
# =============================================================================
# Optional: Logging
# =============================================================================
# Log level: debug | info | warn | error | fatal | silent (default: info)
# PASSMARK_LOG_LEVEL=info