-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (28 loc) · 1.23 KB
/
.env.example
File metadata and controls
36 lines (28 loc) · 1.23 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
# Copy this file to .env and fill in real values.
# Do NOT commit your real .env (it contains secrets).
# Offline mode for judges (no network, no secrets):
# LLM_PROVIDER=none
# LLM provider selection
LLM_PROVIDER=openai
# Required LLM credentials (only needed if LLM_PROVIDER != none)
LLM_API_KEY=sk-or-REPLACE_ME
LLM_BASE_URL=https://openrouter.ai/api/v1
LLM_MODEL=qwen/qwen3-coder:free
LLM_TIMEOUT_SECONDS=30.0
# Optional (OpenRouter attribution headers)
# OPENROUTER_SITE_URL=https://your-site.example
# OPENROUTER_APP_TITLE=Your App Name
# Optional: ScaleDown prompt compression
SCALEDOWN_API_KEY=sd-REPLACE_ME
# Optional but recommended by OpenRouter:
OPENROUTER_SITE_URL=https://your-site.example
OPENROUTER_APP_TITLE=Code Review Agent
# Optional: Show your GitHub profile in the Streamlit sidebar (no auth required)
# GITHUB_USERNAME=your_github_username
# Or set these directly if you want custom values:
# GITHUB_PROFILE_URL=https://github.com/your_github_username
# GITHUB_AVATAR_URL=https://github.com/your_github_username.png
# Optional: Firebase Admin SDK credentials
# Prefer the FILE option so you don't paste JSON into env vars.
# FIREBASE_SERVICE_ACCOUNT_FILE=C:\\path\\to\\service-account.json
# FIREBASE_SERVICE_ACCOUNT_JSON={...}