Skip to content
Merged
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
15 changes: 14 additions & 1 deletion components/backends/trtllm/gpt-oss.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,18 @@ docker compose -f deploy/docker-compose.yml up

## Instructions

### 1. Build the Container
### 1. Pull the Container

```bash
export DYNAMO_CONTAINER_IMAGE="nvcr.io/nvidia/ai-dynamo/tensorrtllm-gpt-oss:latest"

docker pull $DYNAMO_CONTAINER_IMAGE
```

<details>
<summary> Building your own container </summary>

If you'd like to build your own Dynamo container, use the following instructions

**For ARM64 (GB200):**
```bash
Expand Down Expand Up @@ -65,6 +76,8 @@ docker build -f container/Dockerfile.tensorrt_llm_prebuilt . \
-t $DYNAMO_CONTAINER_IMAGE
```

</details>

### 2. Download the Model

```bash
Expand Down
Loading