Skip to content

Commit 9d8b7b3

Browse files
committed
fix: remove excessive rllm-model-gateway reference
1 parent c6aef64 commit 9d8b7b3

3 files changed

Lines changed: 1 addition & 7 deletions

File tree

examples/strands_appworld_agent/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ curl -X POST http://localhost:8080/invocations \
8282

8383
You should see the rollout and reward saved as a json file in s3 folder `s3://agentcore-rl/appworld_test/prompt_123`.
8484

85-
> **Note:** The `_rollout` config must include `base_url` and `model_id`, which tell the agent which inference server to use. The remaining fields (`exp_id`, `s3_bucket`, `session_id`, `input_id`) control S3 result storage and are optional — if omitted, S3 save will be skipped. During RL training, `base_url` can point to [rllm-model-gateway](https://github.com/rllm-org/rllm/tree/main/rllm-model-gateway) for automatic token capture. For evaluation, `base_url` points directly to any OpenAI-compatible inference endpoint.
85+
> **Note:** The `_rollout` config must include `base_url` and `model_id`, which tell the agent which inference server to use. The remaining fields (`exp_id`, `s3_bucket`, `session_id`, `input_id`) control S3 result storage and are optional — if omitted, S3 save will be skipped.
8686
8787
## Docker
8888

examples/strands_math_agent/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,6 @@ curl -X POST http://localhost:8080/invocations \
121121
You should see the rollout and reward saved to `s3://agentcore-rl/test/prompt_123_session_123.json`.
122122

123123
> **Note:** The `_rollout` config must include `base_url` and `model_id`, which tell the agent which inference server to use. The remaining fields (`exp_id`, `s3_bucket`, `session_id`, `input_id`) control S3 result storage and are optional — if omitted, S3 save will be skipped. During training, the full `_rollout` config is injected automatically by the training engine. We recommend testing the full flow locally.
124-
>
125-
> During RL training, `base_url` can point to [rllm-model-gateway](https://github.com/rllm-org/rllm/tree/main/rllm-model-gateway) for automatic token capture. For evaluation, `base_url` points directly to any OpenAI-compatible inference endpoint (vLLM, SGLang, LiteLLM, etc.).
126124
127125

128126
## Run RL App Hosted on ACR

examples/strands_math_agent/rl_app.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,6 @@ def invoke_agent(payload: dict):
2626
- answer: ground truth (str)
2727
- _rollout: rollout config with base_url and model_id
2828
29-
During RL training, base_url can point to rllm-model-gateway for automatic
30-
token capture. For evaluation, base_url points directly to any
31-
OpenAI-compatible inference endpoint (vLLM, SGLang, LiteLLM, etc.).
32-
3329
The @rollout_entrypoint decorator automatically:
3430
- Executes the function in the background for non-blocking processing
3531
- Saves results to S3 with a predictable key

0 commit comments

Comments
 (0)