-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
63 lines (58 loc) · 2.52 KB
/
Copy path.env.example
File metadata and controls
63 lines (58 loc) · 2.52 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# ---------------------------------------------------------------------------
# Minimal local setup
# Fill this part first if you only want to run the app locally.
# ---------------------------------------------------------------------------
OPENAI_API_KEY=
DEEPSEEK_API_KEY=
SMART_LLM=openai:gpt-5-nano
FAST_LLM=openai:gpt-5-nano
STRATEGIC_LLM=openai:gpt-5-nano
TEMPERATURE=0.2
# ---------------------------------------------------------------------------
# Logging and tracing
# Leave these defaults unless you are debugging or integrating observability.
# ---------------------------------------------------------------------------
LOG_LEVEL=INFO
LOG_FORMAT=human
LLM_KWARGS={}
LANGCHAIN_TRACING_V2=false
LANGCHAIN_ENDPOINT=https://api.smith.langchain.com
LANGCHAIN_API_KEY=
LANGCHAIN_PROJECT=prd-pal
# ---------------------------------------------------------------------------
# Feishu integration
# Required only when you want Feishu documents, callbacks, or Feishu H5 usage.
# For local mock testing you can keep signature verification disabled.
# ---------------------------------------------------------------------------
MARRDP_FEISHU_APP_ID=
MARRDP_FEISHU_APP_SECRET=
MARRDP_FEISHU_OPEN_BASE_URL=https://open.feishu.cn
MARRDP_FEISHU_SIGNATURE_DISABLED=true
MARRDP_FEISHU_WEBHOOK_SECRET=
MARRDP_FEISHU_SIGNATURE_TOLERANCE_SEC=300
MARRDP_PUBLIC_BASE_URL=http://127.0.0.1:8000
# Local Feishu notification dry-run is enabled by default.
# Production should set dry-run to false and configure the selected channel.
MARRDP_FEISHU_NOTIFICATION_DRY_RUN=true
MARRDP_FEISHU_NOTIFICATION_CHANNELS=webhook
MARRDP_FEISHU_NOTIFICATION_RECEIVE_ID_TYPE=open_id
MARRDP_FEISHU_NOTIFICATION_DEFAULT_RECEIVE_ID=
MARRDP_FEISHU_NOTIFICATION_WEBHOOK_URL=
MARRDP_FEISHU_NOTIFICATION_TIMEOUT_SEC=10
# ---------------------------------------------------------------------------
# Notion integration
# Required only when you want to review Notion pages directly.
# ---------------------------------------------------------------------------
MARRDP_NOTION_TOKEN=
MARRDP_NOTION_API_BASE_URL=https://api.notion.com/v1
MARRDP_NOTION_API_VERSION=2022-06-28
# ---------------------------------------------------------------------------
# Shared deployment security
# Keep disabled locally. Turn these on for shared or production environments.
# ---------------------------------------------------------------------------
MARRDP_API_AUTH_DISABLED=true
MARRDP_API_KEY=
MARRDP_API_BEARER_TOKEN=
MARRDP_API_RATE_LIMIT_DISABLED=true
MARRDP_API_RATE_LIMIT_MAX_REQUESTS=5
MARRDP_API_RATE_LIMIT_WINDOW_SEC=60