What problem does it solve? Serving large language models in production is slow, memory-hungry, and hard to scale with naive transformers-based setups. This Skill guides you through deploying vLLM to achieve high-throughput, low-latency inference with PagedAttention, continuous batching, and quantization, even on limited GPU memory. ## 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 via the LLM engine API. - 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 serve Llama-3-70B to hundreds of concurrent chatbot users. Use this Skill to configure tensor parallelism across 4 GPUs, enable AWQ quantization and prefix caching, then monitor TTFT and throughput via Prometheus metrics. ## Quick Start Ask the AI to help you launch a vLLM OpenAI-compatible server for your chosen model with appropriate GPU memory and quantization settings.