What problem does it solve? Serving large language models in production is slow and memory-hungry with standard transformers. This Skill guides you through deploying high-throughput LLM APIs with vLLM, achieving up to 24x higher throughput via PagedAttention and continuous batching while fitting large models into limited GPU memory. ## Core Features & Use Cases - Production API Deployment: Launch OpenAI-compatible endpoints with tensor parallelism, prefix caching, and Prometheus metrics for monitoring TTFT and throughput. - Offline Batch Inference: Process large prompt datasets efficiently with automatic batching and multi-GPU tensor parallelism. - 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-8B chatbot backend handling 100+ requests per second on one A100, with Docker deployment, Nginx load balancing, and Grafana dashboards tracking latency. ## Quick Start Use the vLLM skill to deploy meta-llama/Llama-3-8B-Instruct as an OpenAI-compatible API server on port 8000 with prefix caching enabled.