forked from testronai/promptwright
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (22 loc) · 1.01 KB
/
.env.example
File metadata and controls
27 lines (22 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
# Browser Configuration
BROWSER_TYPE=local # local or remote
BROWSER_CLOUD_PROVIDER= # browserbase, steeldev, or browserless
# Browser Cloud Provider API Keys
BROWSERBASE_API_KEY=
STEELDEV_API_KEY=
BROWSERLESS_API_KEY=
# Model Configuration
MODEL_PROVIDER=openai # openai, anthropic, deepseek, groq, or google
MODEL_NAME=gpt-4 # Options: 'gpt-4', 'deepseek-chat', 'claude-3-5-haiku-20241022', 'claude-3-5-sonnet-20241022', 'mixtral-8x7b-32768', 'llama-3.3-70b-versatile', 'gemini-2.0-flash', 'gemini-2.0-flash-lite-preview-02-05', 'gemini-1.5-pro'
CODE_GENERATION_PERSONA=playwright_ts_code # Options: playwright_py_code, playwright_ts_code, cypress_ts_code - Controls test automation framework and language
USE_VISION=false # Enable or disable vision capabilities
# Model API Keys
OPENAI_API_KEY=
ANTHROPIC_API_KEY=
DEEPSEEK_API_KEY=
GROQ_API_KEY=
GOOGLE_API_KEY=
# Other configurations
CONVERSATION_LOG_PATH=logs/conversation.json # Path to save conversation logs
BROWSER_HEADLESS=false
# Other configurations...