The DevOps DropSign in
Interview HubTopicsCertification PrepSavedAchievementsGlobal LeaderboardLearnTech BlogsTech News

AI & LLMs

Model systems, RAG, agents, evals and inference infrastructure.

TypeEverythingQuestions2Drills1Blogs1News21
LevelAll levelsIntermediate2Advanced1

2 items at intermediate level · all topics

Interview question

1
  • QuestionAI·intermediate·6 min+25 XP

    Your RAG system returns confident but wrong answers. The LLM is fine in isolation. How do you debug the pipeline?

    In retrieval-augmented generation (RAG), answer quality is capped by retrieval quality: if the right chunk never reaches the context window, no prompt can save you. Debug retrieval and generation separately, since they fail for different reasons and usually only one of them is actually broken.

    #RAG#LLM#Evaluation

Multiple choice

1
  • DrillAI·intermediate·5 min+25 XP

    You have 50M embeddings, need p99 under 50ms, and 95% recall is acceptable. Which vector index do you choose?

    Vector index choice is a three-way trade between recall, latency and memory. At tens of millions of vectors with a tight latency budget and tolerance for approximate results, HNSW with quantization is the standard answer: exact search cannot meet the latency, and unquantized HNSW cannot meet the memory budget affordably.

    #Vector DB#HNSW#Scaling