CodeXpedite Logo
HomeTopicsAI EngineeringLLMs & Model APIs

LLMs & Model APIs

Working with large language models and model APIs from OpenAI, Anthropic, Google, and beyond. Compare model capabilities, pricing, and context windows, and master structured outputs, streaming, and function calling. Includes integration patterns and real code examples for TypeScript and Node.js projects.

A minimalist 3D visualization of vLLM's V1 process tree, showing a vllm serve terminal branching into glowing API server, engine core, and GPU worker nodes connected by blue ZMQ message pathways.
LLMs & Model APIs

What Happens When You Run vllm serve: A Walk Through vLLM's V1 Multi-Process Architecture

Running vllm serve doesn't start one program — it spawns a tree of API servers, engine cores, GPU workers, and sometimes a DP Coordinator, all wired together with ZMQ sockets. This walkthrough traces vLLM's V1 multi-process architecture from the CLI to the first forward pass on the device, step by…

Sep 1, 2026Read article
What Happens When You Run vllm serve: A Walk Through vLLM's V1 Multi-Process Architecture
A 3D visualization of the LiteLLM routing decision, where one glowing request token enters a central router panel labeled LLM ROUTING and splits into four colored paths toward distinct provider server chips.
LLMs & Model APIs

How LiteLLM Decides Which Model Answers: Deployments, Model Groups, and Routing Strategies

When you call a model through LiteLLM, the model string you send is just a public name for a pool of deployments — and the Router decides which one actually answers. This deep dive traces that decision end to end: model_name matching, multi-provider model groups, routing groups vs. access groups…

Sep 1, 2026Read article
How LiteLLM Decides Which Model Answers: Deployments, Model Groups, and Routing Strategies
Showing 1 - 2 of 2 Posts