Skip to content

Commit 18e3f5e

Browse files
committed
[Fix] Correct parameter in transcription API tutorial
The tutorial was using --static-model-types "transcription" but the actual implementation requires --static-model-labels "transcription" for proper routing of transcription requests. This fixes the documentation mismatch where the tutorial didn't align with the actual code implementation in the routing logic. Signed-off-by: David Gao <davidgao313@outlook.com>
1 parent 30b31f9 commit 18e3f5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorials/23-whisper-api-transcription.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ uv run python3 -m vllm_router.app \
4141
--service-discovery static \
4242
--static-backends "$2" \
4343
--static-models "openai/whisper-small" \
44-
--static-model-types "transcription" \
44+
--static-model-labels "transcription" \
4545
--routing-logic roundrobin \
4646
--log-stats \
4747
--engine-stats-interval 10 \

0 commit comments

Comments
 (0)