-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (30 loc) · 1.09 KB
/
.env.example
File metadata and controls
35 lines (30 loc) · 1.09 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
# ===========================================
# Web Research Agent - Docker Compose Configuration
# ===========================================
#
# This file is for Docker Compose environment variables.
# Copy this file to .env for Docker deployment.
#
# For local development without Docker, see:
# - backend/.env.example
# - frontend/.env.example
#
# ===========================================
# Browserbase Configuration (REQUIRED)
BROWSERBASE_API_KEY=bb_your_api_key_here
BROWSERBASE_PROJECT_ID=your_project_id_here
# Anthropic Configuration (REQUIRED)
ANTHROPIC_API_KEY=sk-ant-your_api_key_here
# Anthropic Model (Optional, defaults to claude-3-5-sonnet-20241022)
ANTHROPIC_MODEL=claude-sonnet-4-5
# Available Anthropic Models:
# - claude-3-5-sonnet-20241022 (recommended)
# - claude-3-5-haiku-20241022 (fastest)
# - claude-3-opus-20240229 (most capable)
# ===========================================
# Docker Usage:
# ===========================================
# 1. Copy this file: cp .env.example .env
# 2. Add your API keys above
# 3. Run: docker-compose up -d
# 4. Access at http://localhost:3000