#!/bin/bash # SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 # ASSUMPTION: dynamo and its dependencies are properly installed # i.e. nats and etcd are running # Overview: # This script deploys dynamo without LMCache on port 8000 # Used as baseline for correctness testing set -e trap 'echo Cleaning up...; kill 0' EXIT # Arguments: MODEL_URL=$1 if [ -z "$MODEL_URL" ]; then echo "Usage: $0 " echo "Example: $0 Qwen/Qwen3-0.6B" exit 1 fi echo "๐Ÿš€ Starting dynamo setup without LMCache:" echo " Model: $MODEL_URL" echo " Port: 8000" # Kill any existing dynamo processes echo "๐Ÿงน Cleaning up any existing dynamo processes..." pkill -f "dynamo-run" || true sleep 2 # Disable LMCache export ENABLE_LMCACHE=0 echo "๐Ÿ”ง Starting dynamo worker without LMCache..." python -m dynamo.frontend & python3 -m dynamo.vllm --model $MODEL_URL