What problem does it solve? Serving large language models in production requires high throughput, low latency, and efficient GPU memory usage, which standard transformers inference cannot deliver. This Skill guides you through deploying vLLM servers with PagedAttention, continuous batching, and quantization to fit large models on limited hardware. ## Core Features & Use Cases - Production API Deployment: Launch OpenAI-compatible endpoints with tensor parallelism, prefix caching, and Prometheus metrics for monitoring. - Offline Batch Inference: Process large prompt datasets efficiently with automatic internal batching and configurable sampling parameters. - Quantized Model Serving: Serve 70B models on a single 40GB GPU using AWQ, GPTQ, or FP8 quantization with minimal accuracy loss. - Use Case: Deploy a Llama 3 70B model behind an OpenAI-compatible API on 4 A100 GPUs, enable prefix caching for repeated system prompts, and monitor TTFT and throughput via Prometheus metrics. ## Quick Start Use the vLLM skill to deploy a Llama 3 8B model as an OpenAI-compatible API server on port 8000 with prefix caching enabled.