179 questions
No questions match those filters.
When does adding a reasoning scaffold like chain-of-tho...
This is one of the questions in the full AI/ML interview bank. Pro unlocks all 1789 questions; Premium includes the same bank plus the highest daily Practice limit.
See plansChain-of-thought and similar scaffolds help when a question genuinely requires multi-step synthesis across retrieved evidence — connecting several passages, doing arithmetic, or resolving an apparent conflict between sources. In those cases, forcing the model to reason step-by-step measurably improves accuracy over asking for a direct answer.
But when the retrieved evidence already directly answers the question, extended reasoning doesn’t add value — it adds surface area for error. A longer reasoning chain gives the model more opportunity to introduce a claim that isn’t actually grounded in the retrieved passages, to second-guess a correct direct answer into an incorrect elaborated one, or simply to drift off the evidence it was given. More retrieved context and more scaffolding both share this same risk shape: they increase the model’s opportunity to hallucinate by giving it more material to reason (or overreason) about, not less. The practical takeaway is that scaffolding should be applied conditionally — routed to genuinely synthesis-heavy queries — rather than as a blanket default for every RAG request.