Advanced AI Prompting #RAG #vector-database #system-design

AI System Design Language

2 exercises — use precise technical vocabulary to describe AI architectures: RAG pipelines, vector databases, and inference chains.

0 / 2 completed
RAG pipeline vocabulary
  • Embedding model — converts text to a vector (e.g. text-embedding-ada-002)
  • Vector store — database for storing and searching embedding vectors (Pinecone, pgvector)
  • Chunk — a piece of a document; chunk size affects retrieval quality
  • Top-k retrieval — fetch the k most semantically similar chunks
  • Grounding context — retrieved chunks injected into the LLM prompt
  • Reranker — second-pass model that re-scores retrieved results by relevance
  • Inference pipeline — the full query → response processing chain
1 / 2
You are describing a RAG-based AI system to a software architect who is new to AI. Which description is most precise and complete?