What problem does it solve? Deploying large language models in production is bottlenecked by GPU memory waste, low throughput, and high latency when using standard inference frameworks. This Skill provides operational guidance for serving LLMs efficiently with vLLM, covering PagedAttention memory management, continuous batching, quantization, and production deployment patterns. ## 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 in a single call with automatic internal batching and configurable sampling parameters. - Quantized Model Serving: Fit 70B models into 40GB of VRAM using AWQ, GPTQ, or FP8 quantization with documented accuracy trade-offs. - Use Case: A team needs to serve Llama-3-8B to hundreds of concurrent chatbot users. Use this Skill to configure a vLLM server with prefix caching and continuous batching, achieving over 100 requests per second on a single A100. ## 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.