-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (31 loc) · 1.49 KB
/
Copy path.env.example
File metadata and controls
36 lines (31 loc) · 1.49 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 to .env.local for local dev. NEVER commit real keys (.env.local is git-ignored).
# --- Brain pool (Live Floor) -------------------------------------------------
# Coworkers run in parallel, each on a key from this server-side pool (/api/llm).
# Add as many keys per provider as you like: GEMINI_API_KEY, _2, _3 ... etc.
# Providers: Gemini (native API), Groq, Cerebras, Mistral, OpenRouter (OpenAI-compatible).
GEMINI_API_KEY=
GEMINI_API_KEY_2=
GEMINI_API_KEY_3=
GROQ_API_KEY=
GROQ_API_KEY_2=
CEREBRAS_API_KEY=
MISTRAL_API_KEY=
OPENROUTER_API_KEY=
# Non-secret descriptor of how many keys exist per provider, e.g.
# "gemini:3,groq:2,cerebras:1,mistral:1,openrouter:1".
# The client uses this to spread coworkers across brains. Keys stay server-side.
VITE_BRAINS=gemini:1
# Server-side key for live web search via Tavily (used by /api/search). Optional —
# without it, web search falls back to Gemini's built-in Google Search grounding.
TAVILY_API_KEY=
# Set to 1 to make the client use the /api/gemini proxy when no user key is entered.
# Leave unset for pure-offline local dev.
VITE_PROXY=
# --- Accounts (optional) -----------------------------------------------------
# Email + password auth with per-account cloud sync (modes, history, settings).
# Neon Postgres connection string (pooled). Leave blank to run guest-only.
DATABASE_URL=
# Secret for signing session JWTs — any long random string.
AUTH_SECRET=
# Set to 1 to turn the account UI on in the client (requires DATABASE_URL server-side).
VITE_AUTH=