The DevOps DropSign in
Interview HubTopicsCertification PrepSavedAchievementsGlobal LeaderboardLearnTech BlogsTech News

AI & LLMs

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

TypeEverythingQuestions2Drills1Blogs1News21
LevelAll levelsIntermediate1Advanced1

1 item at intermediate level · all topics

  • 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