-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (23 loc) · 1.16 KB
/
Copy path.env.example
File metadata and controls
26 lines (23 loc) · 1.16 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
# Copy to `.env` and fill in. `.env` is gitignored — never commit real secrets.
# ── Core platform ─────────────────────────────────────────────────────────
REDIS_URL=redis://127.0.0.1:6379
AMAZE_ORCHESTRATOR_URL=http://orchestrator:8001
OTEL_EXPORTER_OTLP_ENDPOINT=http://orchestrator:4317
OTEL_EXPORTER_OTLP_PROTOCOL=grpc
ORCHESTRATOR_HOST=0.0.0.0
ORCHESTRATOR_PORT=8001
AMAZE_NODE_HOST=0.0.0.0
AMAZE_NODE_PORT=9002
AMAZE_NODE_PUBLIC_ENDPOINT=http://remote-research:9002/invoke
LOG_LEVEL=INFO
# ── Sprint 2: real LLM + real MCP (required for ST-RLG-9) ─────────────────
# OPENAI_API_KEY — used by the llm_tool_node; tests SKIP if unset.
# TAVILY_API_KEY — used by the MCP server's web_search tool.
OPENAI_API_KEY=
TAVILY_API_KEY=
# ── Optional: LangSmith for cross-process trace correlation (Option A) ────
# Enable on BOTH driver and remote node containers (with the same project)
# to merge runs across the wire in LangSmith.
LANGCHAIN_TRACING_V2=false
LANGSMITH_API_KEY=
LANGCHAIN_PROJECT=aMazeGraph