-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy path.env.example
More file actions
27 lines (22 loc) · 858 Bytes
/
.env.example
File metadata and controls
27 lines (22 loc) · 858 Bytes
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
# Environment variables for Browser Operator DevTools
# Copy this file to .env and set your API keys
# OpenAI API Key (for GPT models)
OPENAI_API_KEY=sk-your-openai-api-key-here
# OpenRouter API Key (for multiple LLM providers)
OPENROUTER_API_KEY=sk-or-your-openrouter-api-key-here
# Groq API Key (for fast inference)
GROQ_API_KEY=gsk_your-groq-api-key-here
# LiteLLM API Key (for self-hosted LLM proxy)
LITELLM_API_KEY=your-litellm-api-key-here
# Usage:
# 1. Copy this file: cp .env.example .env
# 2. Set your API keys in the .env file
# 3. Build and run: docker-compose up --build
#
# The API keys will be embedded into the Docker image during build time
# and used as fallbacks when localStorage is empty.
#
# Priority order:
# 1. localStorage (user settings in DevTools)
# 2. Environment variables (this .env file)
# 3. Empty (no API key configured)