This guide explains how to create, configure, and deploy inference graphs for large language models using the dynamo serve
command.
Inference graphs are compositions of service components that work together to handle LLM inference. A typical graph might include:
- Frontend: OpenAI-compatible HTTP server that handles incoming requests
- Processor: Processes requests before passing to workers
- Router: Routes requests to appropriate workers based on specified strategy
- Workers: Handle the actual LLM inference (prefill and decode phases)
Once you've written your various Dynamo services (docs on how to write these can be found here), you can create an inference graph by composing these services together using the following two mechanisms:
from components.worker import VllmWorker
class Processor:
worker = depends(VllmWorker)
# Now you can call worker methods directly
async def process(self, request):
result = await self.worker.generate(request)
Benefits of depends()
:
- Automatically ensures dependent services are deployed
- Creates type-safe client connections between services
- Allows calling dependent service methods directly
# From examples/llm/graphs/agg.py
from components.frontend import Frontend
from components.processor import Processor
from components.worker import VllmWorker
Frontend.link(Processor).link(VllmWorker)
This creates a graph where:
- Frontend depends on Processor
- Processor depends on VllmWorker
The .link()
method is useful for:
- Dynamically building graphs at runtime
- Selectively activating specific dependencies
- Creating different graph configurations from the same components
Once you've defined your inference graph and its configuration, you can deploy it locally using the dynamo serve
command! We recommend running the --dry-run
command so you can see what arguments will be pasesd into your final graph. And then
Lets walk through an example.
The files referenced here can be found here. You will need 1 GPU minimum to run this example. This example can be run from the examples/llm
directory
In this example we'll be deploying an aggregated serving graph. Our components include:
- Frontend - OpenAI-compatible HTTP server that handles incoming requests
- Processor - Runs processing steps and routes the request to a worker
- VllmWorker - Handles the prefill and decode phases of the request
# components/frontend.py
class Frontend:
worker = depends(VllmWorker)
worker_routerless = depends(VllmWorkerRouterLess)
processor = depends(Processor)
...
# components/processor.py
class Processor(ProcessMixIn):
worker = depends(VllmWorker)
router = depends(Router)
...
# components/worker.py
class VllmWorker:
prefill_worker = depends(PrefillWorker)
...
Note that our prebuilt components have the maximal set of dependancies needed to run the component. This allows you to plug in different components to the same graph to create different architectures. When you write your own components, you can be as flexible as you'd like.
# graphs/agg.py
from components.frontend import Frontend
from components.processor import Processor
from components.worker import VllmWorker
Frontend.link(Processor).link(VllmWorker)
We've provided a set of basic configurations for this example here. All of these can be changed and also be overriden by passing in CLI flags to serve!
As a prerequisite, ensure you have NATS and etcd running by running the docker compose in the deploy directory. You can find it here.
docker compose up -d
Note that the we point toward the first node in our graph. In this case, it's the Frontend
service.
# check out the configuration that will be used when we serve
dynamo serve graphs.agg:Frontend -f ./configs/agg.yaml --dry-run
This will print out something like
Service Configuration:
{
"Frontend": {
"model": "deepseek-ai/DeepSeek-R1-Distill-Llama-8B",
"endpoint": "dynamo.Processor.chat/completions",
"port": 8000
},
"Processor": {
"model": "deepseek-ai/DeepSeek-R1-Distill-Llama-8B",
"block-size": 64,
"max-model-len": 16384,
"router": "round-robin"
},
"VllmWorker": {
"model": "deepseek-ai/DeepSeek-R1-Distill-Llama-8B",
"enforce-eager": true,
"block-size": 64,
"max-model-len": 16384,
"max-num-batched-tokens": 16384,
"enable-prefix-caching": true,
"router": "random",
"tensor-parallel-size": 1,
"ServiceArgs": {
"workers": 1
}
}
}
Environment Variable that would be set:
DYNAMO_SERVICE_CONFIG={"Frontend": {"model": "deepseek-ai/DeepSeek-R1-Distill-Llama-8B", "endpoint": "dynamo.Processor.chat/completions", "port": 8000}, "Processor": {"model": "deepseek-ai/DeepSeek-R1-Distill-Llama-8B", "block-size": 64,
"max-model-len": 16384, "router": "round-robin"}, "VllmWorker": {"model": "deepseek-ai/DeepSeek-R1-Distill-Llama-8B", "enforce-eager": true, "block-size": 64, "max-model-len": 16384, "max-num-batched-tokens": 16384, "enable-prefix-caching":
true, "router": "random", "tensor-parallel-size": 1, "ServiceArgs": {"workers": 1}}}
You can override any of these configuration options by passing in CLI flags to serve. For example, to change the routing strategy, you can run
dynamo serve graphs.agg:Frontend -f ./configs/agg.yaml --Processor.router=random --dry-run
Which will print out something like
#...
"Processor": {
"model": "deepseek-ai/DeepSeek-R1-Distill-Llama-8B",
"block-size": 64,
"max-model-len": 16384,
"router": "random"
},
#...
Once you're ready - simply remove the --dry-run
flag to serve your graph!
dynamo serve graphs.agg:Frontend -f ./configs/agg.yaml
Once everything is running, you can test your graph by making a request to the frontend from a different window.
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
}'
If you have any lingering processes after running ctrl-c
, you can kill them by running
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_tree $(pgrep circusd)