CodeXpedite Logo
HomeTopicsAI Engineering

AI Engineering

Practical guides on building with large language models, from model APIs and prompt engineering to agents, RAG systems, and evaluation. Learn how real teams design, build, and ship production AI features with clean, maintainable code. Covers the tools, patterns, and architectures modern AI engineers rely on every day.

Decision diagram comparing compressed-output skill variants across model stacks
AI Agents & Orchestration

Caveman Alternatives Compared: Which Compressed-Output Skill Should You Pick?

A practical buyer's guide that compares Caveman variants against external alternatives, helping readers pick a compressed-output skill based on workflow, model, and stack rather than headline token-savings numbers.

Sep 5, 2026Read article
Caveman Alternatives Compared: Which Compressed-Output Skill Should You Pick?
Isometric diagram of a hybrid retrieval pipeline showing a query splitting into parallel dense vector and lexical keyword search branches, merging into one ranked list, then passing through a reranker stage to a final top-k output.
RAG & Knowledge Systems

How to Build a Hybrid Retrieval Pipeline: BM25, Dense Vectors, RRF, and Cross-Encoder Reranking

Why pure vector search misses exact product codes and names, and how to assemble the three-stage production baseline: parallel BM25 and dense candidate generation, Reciprocal Rank Fusion to merge the ranked lists, and a cross-encoder reranker for final ordering — implemented with Qdrant and Cohere.

Sep 4, 2026Read article
How to Build a Hybrid Retrieval Pipeline: BM25, Dense Vectors, RRF, and Cross-Encoder Reranking
A translucent data cube divided into color-coded sections representing tenant isolation inside a shared Qdrant collection, with the words Tenant Isolation displayed on a floating interface panel.
RAG & Knowledge Systems

Qdrant Multi-Tenancy: One Shared Collection or One Per Tenant?

Shipping one RAG deployment to many organizations forces a hard question: one shared Qdrant collection with tenant filters, or a separate collection per customer? This guide compares both isolation strategies, explains how Qdrant's filterable HNSW keeps tenant data fast and separated, and maps how…

Sep 4, 2026Read article
Qdrant Multi-Tenancy: One Shared Collection or One Per Tenant?
An isometric 3D illustration of a glowing knowledge graph built from stacked documents, visualizing Ragas testset generation for RAG evaluation.
RAG & Knowledge Systems

Inside Ragas Testset Generation: Evolutionary Questions and the Three Models Behind Them

Ragas doesn't just write questions — it builds a knowledge graph from your documents and then evolves simple prompts into reasoning, conditioning, and multi-context challenges. Here is what the generator LLM, the critic LLM, and the embedding model are actually doing inside testset generation, and…

Sep 4, 2026Read article
Inside Ragas Testset Generation: Evolutionary Questions and the Three Models Behind Them
A minimalist 3D illustration of a local AI workstation with floating GPU cards and glowing VRAM modules, representing hardware spec decisions for running LLMs locally.
AI Developer Tools

How to Spec a Local AI Workstation for LLMs: GPU, VRAM, and Multi-GPU Decisions

VRAM — not clock speed — decides which models your machine can actually run, and that single fact reshapes how every dollar should be spent. This guide walks through GPU tiers, the CPU's underrated role, and multi-GPU decisions with real 2026 street prices and benchmarks, so your local AI…

Sep 1, 2026Read article
How to Spec a Local AI Workstation for LLMs: GPU, VRAM, and Multi-GPU Decisions
A minimalist 3D visualization of vLLM's V1 process tree, showing a vllm serve terminal branching into glowing API server, engine core, and GPU worker nodes connected by blue ZMQ message pathways.
LLMs & Model APIs

What Happens When You Run vllm serve: A Walk Through vLLM's V1 Multi-Process Architecture

Running vllm serve doesn't start one program — it spawns a tree of API servers, engine cores, GPU workers, and sometimes a DP Coordinator, all wired together with ZMQ sockets. This walkthrough traces vLLM's V1 multi-process architecture from the CLI to the first forward pass on the device, step by…

Sep 1, 2026Read article
What Happens When You Run vllm serve: A Walk Through vLLM's V1 Multi-Process Architecture
A 3D isometric illustration of an automated documentation ingestion pipeline, with browser-window pages flowing from a sitemap diagram into a glowing vector database cube, visualizing the sitemap-to-vector-store data flow for LLM applications.
RAG & Knowledge Systems

From Sitemap to Vector Store: The 11 Steps of an Automated Docs Ingestion Pipeline

Most engineers obsess over chunking strategies and vector databases, yet the pipeline that feeds them is where the real engineering lives. This guide maps all 11 stages of an automated docs ingestion pipeline — sitemap URL discovery, HTML cleaning, embedding, vector upserts, and incremental refresh…

Sep 1, 2026Read article
From Sitemap to Vector Store: The 11 Steps of an Automated Docs Ingestion Pipeline
A 3D visualization of the LiteLLM routing decision, where one glowing request token enters a central router panel labeled LLM ROUTING and splits into four colored paths toward distinct provider server chips.
LLMs & Model APIs

How LiteLLM Decides Which Model Answers: Deployments, Model Groups, and Routing Strategies

When you call a model through LiteLLM, the model string you send is just a public name for a pool of deployments — and the Router decides which one actually answers. This deep dive traces that decision end to end: model_name matching, multi-provider model groups, routing groups vs. access groups…

Sep 1, 2026Read article
How LiteLLM Decides Which Model Answers: Deployments, Model Groups, and Routing Strategies
A stylized 3D terminal interface surrounded by interconnected AI agent nodes, illustrating the best AI coding agents of 2026 and how each one wraps a frontier model.
AI Developer Tools

The 10 Best AI Coding Agents in 2026: Benchmarks, Pricing, and Real-World Fit

From Claude Code's 1M-token terminal refactors to Devin's fully delegated pull requests, we ranked the ten best AI coding agents of 2026 on real benchmark scores, pricing, and autonomy. Here's which agent fits your workflow — and which failure modes the demos never show you.

Aug 31, 2026Read article
The 10 Best AI Coding Agents in 2026: Benchmarks, Pricing, and Real-World Fit
Showing 1 - 11 of 11 Posts