ai-llm-inference

Optimize LLM inference performance and cost with vLLM and quantization.

73|16|Updated Nov 14, 2025
One-click install
npx skills add https://github.com/vasilyu1983/AI-Agents-public --skill ai-llm-inference
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ai-llm-inference
Source: https://github.com/vasilyu1983/AI-Agents-public/tree/main/frameworks/claude-code-kit/framework/skills/ai-llm-inference
Command: npx skills add https://github.com/vasilyu1983/AI-Agents-public --skill ai-llm-inference

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Optimizes inference with vLLM, quantization, and hardware-aware serving.

Core Features & Use Cases

  • Throughput optimization: vLLM, continuous batching.
  • Quantization: FP8/FP4 to cut costs with minimal accuracy loss.
  • Serving: GPU-accelerated and CPU options for different scales.

Quick Start

Configure a vLLM-based serving pipeline with FP8 quantization for a 70B model.

Frequently Asked Questions about ai-llm-inference

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I optimize LLM inference throughput in production?

Optimize LLM inference throughput using vLLM with continuous batching, quantization techniques (FP8/FP4/INT8/INT4), and KV cache optimization. These methods reduce latency and increase requests-per-second on GPU or CPU infrastructure while maintaining model accuracy.

What's the best way to reduce LLM inference costs without sacrificing accuracy?

Quantization—converting models to FP8, FP4, INT8, or INT4 formats—cuts inference costs significantly with minimal accuracy loss. Combined with vLLM's continuous batching, it enables cost-efficient serving at scale.

Can I serve multiple LLM models efficiently on limited GPU resources?

Yes. Multi-model deployment with quantization, KV cache optimization, and continuous batching allows you to serve multiple models concurrently on shared GPUs, maximizing hardware utilization and reducing per-request cost.

How does quantization (FP8/FP4) affect LLM inference performance and accuracy?

Quantization reduces model size and memory bandwidth requirements, accelerating inference with lower hardware costs. FP8 and FP4 formats achieve 2–4x speedups with minimal accuracy degradation when properly calibrated.

Does vLLM support both GPU and CPU inference, and when should I use each?

vLLM supports GPU-accelerated inference for high throughput and CPU serving for lower-scale or cost-constrained deployments. GPU is preferred for production; CPU suits edge or resource-limited environments.

What operational decisions do I need to make for production-ready LLM serving?

Production-ready inference requires configuration templates, decision rules, and operational checklists covering model quantization, batching strategy, hardware allocation, failover, and monitoring to ensure reliable, high-throughput, cost-efficient serving.