-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
46 lines (39 loc) · 2.01 KB
/
Copy path.env.example
File metadata and controls
46 lines (39 loc) · 2.01 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
42
43
44
45
46
# ===========================================================================
# NodeAgent environment template
# ---------------------------------------------------------------------------
# Copy this file to `.env.local` and fill in real values. `.env.local` is
# gitignored and is scanned by `npm run secret-scan` before any push.
#
# NodeAgent runs as a self-contained showcase with NO keys at all (it falls
# back to deterministic demo data). Keys only "light up" the live paths:
# - VITE_CONVEX_URL -> live cross-collaborative chat + context room
# - OPENROUTER -> preferred live LLM path; defaults to current open models
# - ANTHROPIC / OPENAI -> optional direct-provider fallback
# - LINKUP / BRAVE -> live web retrieval for search-and-synthesize
# ===========================================================================
# --- Client-side (safe to expose; inlined into the browser bundle) ----------
# Convex deployment URL for the live collaborative room. Leave blank for demo mode.
VITE_CONVEX_URL=
# Optional public read key the prototype fetches via /api/nodeagent-config.
VITE_NODEAGENT_PUBLIC_KEY=
# --- Server-side (NEVER exposed to the browser) -----------------------------
# Convex backend (matches VITE_CONVEX_URL deployment).
CONVEX_DEPLOYMENT=
CONVEX_URL=
# Preferred live LLM route. The smoke defaults to current OpenRouter open-model
# candidates and tries them in priority order. Override only when pinning.
OPENROUTER_API_KEY=
NODEAGENT_OPENROUTER_MODEL_PRIORITY=z-ai/glm-5.2,moonshotai/kimi-k2.7-code,cohere/north-mini-code:free,nvidia/nemotron-3-ultra-550b-a55b,nex-agi/nex-n2-pro
# Direct-provider fallbacks.
ANTHROPIC_API_KEY=
OPENAI_API_KEY=
# Live web retrieval for the search-and-synthesize pipeline (optional fallbacks).
LINKUP_API_KEY=
BRAVE_API_KEY=
SERPER_API_KEY=
TAVILY_API_KEY=
# Optional: Gemini as a reranking / judge fallback.
GEMINI_API_KEY=
# Optional timeouts (ms) for external calls in the live pipeline.
ANTHROPIC_TIMEOUT_MS=20000
LINKUP_TIMEOUT_MS=12000