#!/bin/bash # SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 # # Aggregated multimodal image/video serving with standard Dynamo preprocessing # # Architecture: Single-worker PD (Prefill-Decode) # - Frontend: Rust OpenAIPreprocessor forwards multimodal requests # - Worker: Standard vLLM worker with multimodal model support # # For EPD (Encode-Prefill-Decode) architecture with dedicated encoding worker, # see agg_multimodal_epd.sh set -e trap 'echo Cleaning up...; kill 0' EXIT SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" source "$SCRIPT_DIR/../../../common/gpu_utils.sh" source "$SCRIPT_DIR/../../../common/launch_utils.sh" # Default values MODEL_NAME="${DYN_MODEL_NAME:-Qwen/Qwen3-VL-30B-A3B-Instruct-FP8}" # Parse command line arguments # Extra arguments are passed through to the vLLM worker EXTRA_ARGS=() while [[ $# -gt 0 ]]; do case $1 in --model) MODEL_NAME=$2 shift 2 ;; -h|--help) echo "Usage: $0 [OPTIONS] [-- EXTRA_VLLM_ARGS]" echo "Options:" echo " --model Specify the VLM model to use (default: $MODEL_NAME)" echo " -h, --help Show this help message" echo "" echo "Any additional arguments are passed through to the vLLM worker." echo "Example: $0 --model Qwen/Qwen3-VL-30B-A3B-Instruct-FP8 --dyn-tool-call-parser hermes" exit 0 ;; *) EXTRA_ARGS+=("$1") shift ;; esac done HTTP_PORT="${DYN_HTTP_PORT:-8000}" # Use TCP transport (instead of default NATS) # TCP is preferred for multimodal workloads because it overcomes: # - NATS default 1MB max payload limit (multimodal base64 images can exceed this) export DYN_REQUEST_PLANE=tcp print_launch_banner --no-curl "Launching Aggregated Multimodal Serving" "$MODEL_NAME" "$HTTP_PORT" \ "Backend: dynamo.vllm --enable-multimodal" \ "Media: image_url and video_url (model support dependent)" print_curl_footer <