-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.env.example
More file actions
43 lines (34 loc) · 1.46 KB
/
.env.example
File metadata and controls
43 lines (34 loc) · 1.46 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
# ============================================================
# CaRR Runtime Environment Template
# ============================================================
# How to use:
# 1) Copy this file to .env
# 2) Fill all fields in "Minimum Required"
# 3) Optionally adjust values in "Optional"
# ============================================================
# Minimum Required
# ============================================================
# [Paths] Absolute project root and SLIME workspace path
CARR_ROOT=/path/to/CaRR
SLIME_ROOT=${CARR_ROOT}/slime
# [Tool Server API keys] Required by training/evaluation tool calls
SERP_API_KEY=<your_serper_api_key>
JINA_API_KEY=<your_jina_api_key>
# [Training RM] DeepSeek-compatible endpoint and key
DEEPSEEK_API_KEY=<your_deepseek_api_key>
DEEPSEEK_BASE_URL=https://api.deepseek.com
# [Evaluation RM] OpenAI-compatible endpoint and key (GPT-5 RM)
OPENAI_API_KEY=<your_openai_or_gateway_api_key>
OPENAI_BASE_URL=<your_openai_or_gateway_base_url>
# [Dataset decryption password] Must match the password used at encryption time
EVAL_DATA_PASSWORD=change_me_eval_password
# ============================================================
# Optional (recommended defaults)
# ============================================================
# [Proxy] Leave empty unless your environment requires outbound proxy
HTTP_PROXY=
HTTPS_PROXY=
# [Ports] Change only if these ports are occupied in your environment
TOOL_SERVER_PORT=7230
RM_TRAIN_PORT=8888
RM_EVAL_PORT=6759