Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
8380f1bd
Unverified
Commit
8380f1bd
authored
Aug 20, 2025
by
Ryan McCormick
Committed by
GitHub
Aug 20, 2025
Browse files
docs: Add health check section to GPT OSS guide (#2556)
parent
59053354
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
1 deletion
+21
-1
components/backends/trtllm/gpt-oss.md
components/backends/trtllm/gpt-oss.md
+21
-1
No files found.
components/backends/trtllm/gpt-oss.md
View file @
8380f1bd
...
@@ -211,7 +211,27 @@ CUDA_VISIBLE_DEVICES=4,5,6,7 python3 -m dynamo.trtllm \
...
@@ -211,7 +211,27 @@ CUDA_VISIBLE_DEVICES=4,5,6,7 python3 -m dynamo.trtllm \
--expert-parallel-size
4
--expert-parallel-size
4
```
```
### 6. Test the Deployment
### 6. Verify the Deployment is Ready
Poll the
`/health`
endpoint to verify that both the prefill and decode worker endpoints have started:
```
curl http://localhost:8000/health
```
Make sure that both of the endpoints are available before sending an inference request:
```
{
"endpoints": [
"dyn://dynamo.tensorrt_llm.generate",
"dyn://dynamo.tensorrt_llm_next.generate"
],
"status": "healthy"
}
```
If only one worker endpoint is listed, the other may still be starting up. Monitor the worker logs to track startup progress.
### 7. Test the Deployment
Send a test request to verify the deployment:
Send a test request to verify the deployment:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment