ai-ml-landscape

Guides AI/ML model selection, deployment, fine-tuning, and governance decisions for 2025-2026 systems.

1|Updated Aug 10, 2026
One-click install
npx skills add https://github.com/TheViziusGroup/vibe-engineering-skills --skill ai-ml-landscape-theviziusgroup
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ai-ml-landscape
Source: https://github.com/TheViziusGroup/vibe-engineering-skills/tree/main/plugins/ai-and-data/skills/ai-ml-landscape
Command: npx skills add https://github.com/TheViziusGroup/vibe-engineering-skills --skill ai-ml-landscape-theviziusgroup

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Choosing the right model, architecture, and deployment strategy in the fast-moving AI/ML landscape is error-prone: benchmarks are contaminated, model rankings shift weekly, and teams overpay for frontier APIs or fine-tune when RAG would suffice. This Skill provides a practitioner reference covering the 2025-2026 landscape so architecture decisions are grounded in current evidence. ## Core Features & Use Cases - Model Selection & Routing: Decision rules for hosted APIs vs open weights, staged model routing (RouteLLM-style), and abstraction layers (LiteLLM/OpenRouter) to avoid lock-in. - Build Pattern Guidance: The prompting → RAG → fine-tuning progression, with production RAG defaults (hybrid BM25+dense retrieval, reranking, contextual retrieval) and LoRA/QLoRA/DPO/GRPO fine-tuning criteria. - Inference & Serving: Quantization format trade-offs (AWQ/GPTQ/GGUF/FP8), serving engine comparison (vLLM/SGLang/TensorRT-LLM), and continuous batching patterns. - Governance & Evaluation: EU AI Act compliance deadlines, benchmark contamination skepticism, and internal eval construction. - Use Case: When asked whether to self-host DeepSeek-V4 or use a hosted API for a high-QPS document pipeline, this Skill provides the cost, privacy, and capability trade-off framework plus the vLLM/SGLang serving configuration to act on the decision. ## Quick Start Ask the AI to recommend a model and deployment strategy for your workload, for example whether to use a hosted frontier API or self-host open weights on vLLM for a RAG application.

Frequently Asked Questions about ai-ml-landscape

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

FAQPage Schema
How do I choose between hosted LLM APIs and open-weight models?

Hosted APIs win for peak capability and zero operations; open weights win for privacy, air-gap requirements, fine-tuning control, and predictable cost at sustained high QPS. Self-host when API spend exceeds fully-loaded GPU fleet cost or data residency is mandatory.

Should I use RAG or fine-tuning for my LLM application?

Follow the order prompting, then RAG, then fine-tuning. RAG handles dynamic factual knowledge with citations; fine-tuning (LoRA/QLoRA) changes behavior, format, or domain style. They combine rather than compete.

vLLM vs SGLang for LLM serving, which should I use?

vLLM offers PagedAttention and the broadest model and hardware support. SGLang's RadixAttention delivers roughly 29% higher H100 throughput and up to 6.4x on prefix-heavy RAG and chat workloads. TensorRT-LLM maximizes NVIDIA throughput.

Why do LLM benchmark scores not match production results?

Benchmark contamination and scaffold differences cause large swings; a single model can move 17-35 points between SWE-bench Verified and Pro. Build a 50-200 case internal eval on real workflows and never select on a single leaderboard number.

When should I use INT4 quantization for LLM inference?

AWQ and GPTQ INT4 give best vLLM throughput with under 2% degradation on most tasks, but avoid INT4 for math, code, and reasoning-critical paths. FP8 W8A8 is near-lossless on Hopper and Blackwell hardware.

What are the EU AI Act deadlines for AI system builders?

GPAI obligations began August 2, 2025; enforcement powers, fines, and high-risk system obligations start August 2, 2026. Fines reach 35 million euros or 7% of global turnover. Classify your system against the risk tiers if you touch EU users.