-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
41 lines (31 loc) · 2.56 KB
/
.env.example
File metadata and controls
41 lines (31 loc) · 2.56 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
# WWW-AGENT Environment Variables
# Copy this file to .env and fill in your API keys
# ████████████████████████████████████████████████████████████████████████████
# AI Provider API Keys
# ████████████████████████████████████████████████████████████████████████████
# Anthropic (Claude) - Used for programming and reasoning tasks
API_KEY_ANTHROPIC=your_anthropic_api_key_here
# OpenAI (GPT) - Used for human-simulated responses
API_KEY_OPEN_AI=your_openai_api_key_here
# Google Custom Search - Used for web research to verify current facts
# Get API key: https://console.cloud.google.com/apis/credentials
# Get Search Engine ID: https://programmablesearchengine.google.com/
API_KEY_GOOGLE_CUSTOM_SEARCH=your_google_api_key_here
GOOGLE_CUSTOM_SEARCH_ID=your_search_engine_id_here
# ████████████████████████████████████████████████████████████████████████████
# GitHub Configuration
# ████████████████████████████████████████████████████████████████████████████
# GitHub Personal Access Token with repo and PR permissions
# Required scopes: repo, write:discussion
GITHUB_TOKEN=your_github_token_here
# Target repository that the agents will work on (format: owner/repo)
# This is NOT the www-agent repo - this is where PRs will be created!
# Example: internet-development/nextjs-sass-starter
GITHUB_REPO_AGENTS_WILL_WORK_ON=owner/repository
# GitHub username for branch naming and commits
GITHUB_USERNAME=your_github_username
# ████████████████████████████████████████████████████████████████████████████
# Optional Configuration
# ████████████████████████████████████████████████████████████████████████████
# Delay between API requests in milliseconds (prevents rate limiting)
REQUEST_DELAY_MS=1000