# LLM Deployment Examples This directory contains examples and reference implementations for deploying Large Language Models (LLMs) in various configurations. ## Components - workers: Prefill and decode worker handles actual LLM inference - router: Handles API requests and routes them to appropriate workers based on specified strategy - frontend: OpenAI compatible http server handles incoming requests ## Deployment Architectures ### Monolith Single-instance deployment where both prefill and decode are done by the same worker. ### Disaggregated Distributed deployment where prefill and decode are done by separate workers that can scale independently. ## Getting Started 1. Choose a deployment architecture based on your requirements 2. Configure the components as needed 3. Deploy using the provided scripts ### Prerequisites Start required services (etcd and NATS) using [Docker Compose](/deploy/docker-compose.yml) ```bash docker compose -f deploy/docker-compose.yml up -d ``` ### Build docker ``` ./container/build.sh ``` ### Run container ``` ./container/run.sh -it ``` ## Run Deployment This figure shows an overview of the major components to deploy: ``` +----------------+ +------| prefill worker |-------+ notify | | | | finished | +----------------+ | pull v v +------+ +-----------+ +------------------+ push +---------------+ | HTTP |----->| processor |----->| decode/monolith |------------>| prefill queue | | |<-----| |<-----| worker | | | +------+ +-----------+ +------------------+ +---------------+ | ^ | query best | | return | publish kv events worker | | worker_id v | | +------------------+ | +---------| kv-router | +------------->| | +------------------+ ``` ### Example architectures #### Router based worker ```bash cd /workspace/deploy/examples/llm dynamo serve monolith.router_based_deployment:Frontend -f ./configs/monolith/router_based_deployment.yaml ``` #### Routerless monolith ```bash cd /workspace/deploy/examples/llm dynamo serve monolith.routerless_deployment:Frontend -f ./configs/monolith/routerless_deployment.yaml ``` #### Routerless processor based monolith ```bash dynamo serve monolith.routerless_processor_deployment:Frontend -f ./configs/monolith/routerless_processor_deployment.yaml ``` #### Router based disaggregated serving ```bash cd /workspace/deploy/examples/llm dynamo serve disaggregated.router_based_deployment:Frontend -f ./configs/disaggregated/router_based_deployment.yaml ``` #### Routerless disaggregated serving ```bash cd /workspace/deploy/examples/llm dynamo serve disaggregated.routerless_deployment:Frontend -f ./configs/disaggregated/routerless_deployment.yaml ``` ### Client In another terminal: ```bash # this test request has around 200 tokens isl curl localhost:8000/v1/chat/completions -H "Content-Type: application/json" -d '{ "model": "deepseek-ai/DeepSeek-R1-Distill-Llama-8B", "messages": [ { "role": "user", "content": "In the heart of Eldoria, an ancient land of boundless magic and mysterious creatures, lies the long-forgotten city of Aeloria. Once a beacon of knowledge and power, Aeloria was buried beneath the shifting sands of time, lost to the world for centuries. You are an intrepid explorer, known for your unparalleled curiosity and courage, who has stumbled upon an ancient map hinting at ests that Aeloria holds a secret so profound that it has the potential to reshape the very fabric of reality. Your journey will take you through treacherous deserts, enchanted forests, and across perilous mountain ranges. Your Task: Character Background: Develop a detailed background for your character. Describe their motivations for seeking out Aeloria, their skills and weaknesses, and any personal connections to the ancient city or its legends. Are they driven by a quest for knowledge, a search for lost familt clue is hidden." } ], "stream":false, "max_tokens": 30 }' ``` ### Close deployment Kill all dynamo processes managed by circusd. ``` function kill_tree() { local parent=$1 local children=$(ps -o pid= --ppid $parent) for child in $children; do kill_tree $child done echo "Killing process $parent" kill -9 $parent } # kill process-tree of circusd kill_tree $(pgrep circusd) ```