forked from NVIDIA/nemoclaw-community
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (23 loc) · 1.09 KB
/
Copy path.env.example
File metadata and controls
28 lines (23 loc) · 1.09 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
# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
# Sandbox name that receives the deep-research skill and CLI wrapper.
SANDBOX_NAME=deep-research-worker
# Worker API port. scripts/bring-up.sh binds it to the OpenShell bridge when
# available and otherwise to host loopback.
DEEPAGENTS_SERVICE_PORT=9050
DEEPAGENTS_WORKER_CONCURRENCY=5
DEEPAGENTS_TASK_TTL_HOURS=168
# Leave empty to generate a strong token in the gitignored .run directory.
DEEPAGENTS_SERVICE_SECRET=
# OpenAI-compatible inference endpoint that the worker calls from inside the
# Docker container. The Compose file maps host.docker.internal to the Docker
# host on Linux and Docker Desktop.
OPENAI_API_BASE=http://host.docker.internal:9001/v1
OPENAI_API_KEY=<openai-compatible-api-key>
DEEPAGENTS_DEFAULT_MODEL=gpt-5
# Optional read-only host-side services the worker can call.
WEBSEARCH_ENDPOINT_URL=http://host.docker.internal:8190
WEBSEARCH_SERVICE_SECRET=
DOC_SEARCH_ENDPOINT_URL=http://host.docker.internal:8185
DOC_SEARCH_SERVICE_SECRET=
LOG_LEVEL=INFO