#!/bin/bash # SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 set -e trap 'echo Cleaning up...; kill 0' EXIT # Default model MODEL="Qwen/Qwen3-0.6B" # Parse command line arguments EXTRA_ARGS=() while [[ $# -gt 0 ]]; do case $1 in --model) MODEL="$2" shift 2 ;; *) EXTRA_ARGS+=("$1") shift ;; esac done # Enable tracing -- requires the observability stack (Prometheus, Grafana, Tempo). # See docs/observability/README.md for setup instructions. export DYN_LOGGING_JSONL=true export OTEL_EXPORT_ENABLED=true export OTEL_EXPORTER_OTLP_TRACES_ENDPOINT="${OTEL_EXPORTER_OTLP_TRACES_ENDPOINT:-http://localhost:4317}" HTTP_PORT="${DYN_HTTP_PORT:-8000}" echo "==========================================" echo "Launching Aggregated Serving + Tracing (1 GPU)" echo "==========================================" echo "Model: $MODEL" echo "Frontend: http://localhost:$HTTP_PORT" echo "Tempo: $OTEL_EXPORTER_OTLP_TRACES_ENDPOINT" echo "==========================================" echo "" echo "Example test command:" echo "" echo " curl http://localhost:${HTTP_PORT}/v1/chat/completions \\" echo " -H 'Content-Type: application/json' \\" echo " -H 'x-request-id: test-trace-001' \\" echo " -d '{" echo " \"model\": \"${MODEL}\"," echo " \"messages\": [{\"role\": \"user\", \"content\": \"Explain why Roger Federer is considered one of the greatest tennis players of all time\"}]," echo " \"max_tokens\": 32" echo " }'" echo "" echo "==========================================" # run ingress # dynamo.frontend accepts either --http-port flag or DYN_HTTP_PORT env var (defaults to 8000) export OTEL_SERVICE_NAME=dynamo-frontend python -m dynamo.frontend & # run worker # --enforce-eager is added for quick deployment. for production use, need to remove this flag export OTEL_SERVICE_NAME=dynamo-worker-vllm DYN_SYSTEM_PORT=${DYN_SYSTEM_PORT:-8081} \ python -m dynamo.vllm --model "$MODEL" --enforce-eager \ --otlp-traces-endpoint="$OTEL_EXPORTER_OTLP_TRACES_ENDPOINT" \ "${EXTRA_ARGS[@]}"