-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.env.example
More file actions
129 lines (103 loc) · 5.3 KB
/
Copy path.env.example
File metadata and controls
129 lines (103 loc) · 5.3 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# WorldForge environment configuration template.
#
# Copy this file to `.env` and fill in the values for the providers you plan to
# use. WorldForge only auto-registers optional providers when their required
# environment variables are present, so leaving a block blank simply disables
# that provider.
#
# Never commit a real `.env`. Credentials belong to the host environment.
# -----------------------------------------------------------------------------
# Cosmos-Policy (NVIDIA Cosmos-Policy ALOHA /act server) -- policy
# -----------------------------------------------------------------------------
# Required to auto-register: base URL of a reachable Cosmos-Policy policy server.
# Public/routable endpoints are allowed by default. Localhost/private endpoints
# require COSMOS_POLICY_ALLOW_LOCAL_BASE_URL=1 below.
# Example: https://cosmos-policy.example.com
COSMOS_POLICY_BASE_URL=
# Optional bearer token sent as `Authorization: Bearer ...` when set.
# COSMOS_POLICY_API_TOKEN=
# Optional: HTTP timeout in seconds for policy requests (default 600).
# COSMOS_POLICY_TIMEOUT_SECONDS=600
# Optional: embodiment tag attached to policy results (default aloha).
# COSMOS_POLICY_EMBODIMENT_TAG=aloha
# Optional: model metadata recorded in policy results.
# COSMOS_POLICY_MODEL=nvidia/Cosmos-Policy-ALOHA-Predict2-2B
# Optional: request all Cosmos-Policy query candidates when supported by the server.
# COSMOS_POLICY_RETURN_ALL_QUERY_RESULTS=
# Optional: explicitly allow localhost/private Cosmos-Policy base URLs for trusted
# SSH tunnels or lab networks. Keep unset for public/routable endpoints.
# COSMOS_POLICY_ALLOW_LOCAL_BASE_URL=
# Optional: comma-separated hostname allowlist for deployments that restrict the
# configured Cosmos-Policy endpoint. Supports shell-style wildcards.
# COSMOS_POLICY_ALLOWED_HOSTS=*.example.com,185.216.20.241
# -----------------------------------------------------------------------------
# LeWorldModel (JEPA cost model via stable_worldmodel) -- score
# -----------------------------------------------------------------------------
# Required to auto-register: checkpoint run name relative to $STABLEWM_HOME
# (upstream default: ~/.stable-wm). Example: pusht/lewm
# LEWM_POLICY is accepted as a legacy alias.
LEWORLDMODEL_POLICY=
# LEWM_POLICY=
# Optional: override the checkpoint cache directory.
# STABLEWM_HOME=
# LEWORLDMODEL_CACHE_DIR=
# Optional: pinned Hugging Face commit SHA for auto-built LeWM assets.
# LEWORLDMODEL_REVISION=22b330c28c27ead4bfd1888615af1340e3fe9052
# Optional: config/weights cache directory used by the LeWM checkpoint builder.
# LEWORLDMODEL_ASSET_CACHE_DIR=
# Optional: torch device string, e.g. cpu, cuda, cuda:0.
# LEWORLDMODEL_DEVICE=
# -----------------------------------------------------------------------------
# GR00T (NVIDIA Isaac GR00T PolicyClient) -- policy
# -----------------------------------------------------------------------------
# Required to auto-register: reachable host running the GR00T policy server.
GROOT_POLICY_HOST=
# Optional: port (default 5555).
# GROOT_POLICY_PORT=5555
# Optional: request timeout in milliseconds (default 15000).
# GROOT_POLICY_TIMEOUT_MS=15000
# Optional: bearer token sent to the policy server when set.
# GROOT_POLICY_API_TOKEN=
# Optional: 1/true enables strict mode on the PolicyClient.
# GROOT_POLICY_STRICT=
# Optional: embodiment tag attached to policy requests.
# GROOT_EMBODIMENT_TAG=
# -----------------------------------------------------------------------------
# LeRobot (Hugging Face LeRobot pretrained policies) -- policy
# -----------------------------------------------------------------------------
# Required to auto-register: Hugging Face repo id or local checkpoint directory.
# Example: lerobot/act_aloha_sim_transfer_cube_human
# LEROBOT_POLICY is accepted as a legacy alias.
LEROBOT_POLICY_PATH=
# LEROBOT_POLICY=
# Optional: policy class hint. Must be one of:
# act, diffusion, pi0, pi0fast, sac, smolvla, tdmpc, vqbet
# LEROBOT_POLICY_TYPE=
# Optional: torch device string.
# LEROBOT_DEVICE=
# Optional: checkpoint cache directory.
# LEROBOT_CACHE_DIR=
# Optional: embodiment tag attached to policy requests.
# LEROBOT_EMBODIMENT_TAG=
# -----------------------------------------------------------------------------
# JEPA-WMS candidate (facebookresearch/jepa-wms torch-hub scaffold)
# -----------------------------------------------------------------------------
# These variables are documented by the `jepa-wms` provider candidate only and
# do NOT make JEPAWMSProvider available through WorldForge auto-registration.
# Direct tests must inject `runtime=` or use JEPAWMSProvider.from_torch_hub(...).
# JEPA_WMS_MODEL_PATH=
# JEPA_WMS_MODEL_NAME=
# JEPA_WMS_DEVICE=
# -----------------------------------------------------------------------------
# Experimental and scaffold providers
# -----------------------------------------------------------------------------
# JEPA_MODEL_NAME enables the experimental score-only JEPA adapter backed by the
# host-owned facebookresearch/jepa-wms torch-hub path. JEPA_MODEL_PATH is legacy
# scaffold metadata only. Genie remains a capability-closed reservation; the
# deterministic surrogate path is for local adapter tests only and also requires
# WORLDFORGE_ENABLE_SCAFFOLD_SURROGATES=1.
# JEPA_MODEL_NAME=jepa_wm_pusht
# JEPA_MODEL_PATH=
# JEPA_DEVICE=
# GENIE_API_KEY=
# WORLDFORGE_ENABLE_SCAFFOLD_SURROGATES=