What problem does it solve? Deploying large language models in production often means choosing between slow inference, excessive GPU memory consumption, and complex serving infrastructure. This Skill guides you through serving LLMs with vLLM, which uses PagedAttention and continuous batching to achieve up to 24x higher throughput than standard transformers while fitting large models into limited GPU memory. ## Core Features & Use Cases - Production API Deployment: Launch OpenAI-compatible endpoints with monitoring, prefix caching, and Docker/Kubernetes deployment patterns. - Offline Batch Inference: Process large prompt datasets efficiently with automatic batching and tensor parallelism across multiple GPUs. - Quantized Model Serving: Fit 70B models on a single 40GB GPU using AWQ, GPTQ, or FP8 quantization with minimal accuracy loss. - Use Case: You need to deploy Llama-3-8B as a chatbot backend handling 100+ requests per second. Use this Skill to configure the server, enable prefix caching, set up Prometheus metrics, and verify TTFT stays under 500ms. ## Quick Start Use the vLLM skill to help me deploy a Llama-3-8B model as an OpenAI-compatible API server on my GPU.