Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ policy_model_name: gpt-4.1-2025-04-14" > env.yaml
**Terminal 1 (start servers)**:
```bash
# Start servers (this will keep running)
config_paths="resources_servers/example_single_tool_call/configs/single_tool_call.yaml,\
config_paths="resources_servers/example_single_tool_call/configs/example_single_tool_call.yaml,\
responses_api_models/openai_model/configs/openai_model.yaml"
ng_run "+config_paths=[${config_paths}]"
```
Expand Down
2 changes: 1 addition & 1 deletion docs/about/concepts/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ responses_api_models/
# Resources Server Config
resources_servers/
└── example_single_tool_call/
└── configs/single_tool_call.yaml
└── configs/example_single_tool_call.yaml

# Agent Server Config
responses_api_agents/
Expand Down
6 changes: 3 additions & 3 deletions docs/get-started/rollout-collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ If you still have servers running from the [Setup and Installation](setup-instal
If not, start them again:

```bash
config_paths="resources_servers/example_single_tool_call/configs/single_tool_call.yaml,\
config_paths="resources_servers/example_single_tool_call/configs/example_single_tool_call.yaml,\
responses_api_models/openai_model/configs/openai_model.yaml"
ng_run "+config_paths=[${config_paths}]"
```
Expand All @@ -75,7 +75,7 @@ In a separate terminal, run:
```bash
ng_collect_rollouts +agent_name=single_tool_call_simple_agent \
+input_jsonl_fpath=resources_servers/example_single_tool_call/data/example.jsonl \
+output_jsonl_fpath=results/single_tool_call_rollouts.jsonl \
+output_jsonl_fpath=results/example_single_tool_call_rollouts.jsonl \
+limit=5 \
+num_repeats=2 \
+num_samples_in_parallel=3
Expand Down Expand Up @@ -119,7 +119,7 @@ Collecting rollouts: 100%|████████████████| 5/5
Launch the rollout viewer:

```bash
ng_viewer +jsonl_fpath=results/single_tool_call_rollouts.jsonl
ng_viewer +jsonl_fpath=results/example_single_tool_call_rollouts.jsonl
```

The viewer starts on port 7860 and accepts requests only from localhost by default. Visit <http://127.0.0.1:7860> in your browser.
Expand Down
2 changes: 1 addition & 1 deletion docs/get-started/setup-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ Check your `env.yaml` file has the correct API key format.

```bash
# Define which servers to start
config_paths="resources_servers/example_single_tool_call/configs/single_tool_call.yaml,\
config_paths="resources_servers/example_single_tool_call/configs/example_single_tool_call.yaml,\
responses_api_models/openai_model/configs/openai_model.yaml"

# Start all servers
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ policy_model_name: gpt-4.1-2025-04-14" > env.yaml

```bash
# Start servers (this will keep running)
config_paths="resources_servers/example_single_tool_call/configs/single_tool_call.yaml,\
config_paths="resources_servers/example_single_tool_call/configs/example_single_tool_call.yaml,\
responses_api_models/openai_model/configs/openai_model.yaml"
ng_run "+config_paths=[${config_paths}]"
```
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/cli-commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ This command reads configuration from YAML files specified via `+config_paths` a

```bash
# Start servers with specific configs
config_paths="resources_servers/example_single_tool_call/configs/single_tool_call.yaml,\
config_paths="resources_servers/example_single_tool_call/configs/example_single_tool_call.yaml,\
responses_api_models/openai_model/configs/openai_model.yaml"
ng_run "+config_paths=[${config_paths}]"
```
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ policy_model_name: gpt-4o-2024-11-20
# Optional: store config paths for reuse
my_config_paths:
- responses_api_models/openai_model/configs/openai_model.yaml
- resources_servers/example_single_tool_call/configs/single_tool_call.yaml
- resources_servers/example_single_tool_call/configs/example_single_tool_call.yaml

# Optional: validation behavior
error_on_almost_servers: true # Exit on invalid configs (default: true)
Expand Down
4 changes: 2 additions & 2 deletions nemo_gym/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class RunConfig(BaseNeMoGymCLIConfig):
Examples:

```bash
config_paths="resources_servers/example_single_tool_call/configs/single_tool_call.yaml,\\
config_paths="resources_servers/example_single_tool_call/configs/example_single_tool_call.yaml,\\
responses_api_models/openai_model/configs/openai_model.yaml"
ng_run "+config_paths=[${config_paths}]"
```
Expand Down Expand Up @@ -383,7 +383,7 @@ def run(

```bash
# Start servers with specific configs
config_paths="resources_servers/example_single_tool_call/configs/single_tool_call.yaml,\\
config_paths="resources_servers/example_single_tool_call/configs/example_single_tool_call.yaml,\\
responses_api_models/openai_model/configs/openai_model.yaml"
ng_run "+config_paths=[${config_paths}]"
```
Expand Down