179 questions
No questions match those filters.
What is the ReAct (Reasoning + Acting) pattern in AI ag...
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 plansReAct is a loop with three parts repeating: Thought, where the model reasons about what it still needs; Action, where it calls a tool to get it; and Observation, where it reads what the tool actually returned. It keeps cycling through that loop until it has enough to answer.
Take “what’s the weather in Tokyo, and should I carry an umbrella.” The model thinks it needs the current weather, calls a weather API, observes “28°C, 80% chance of rain,” and only then reasons its way to “yes, bring an umbrella” — the recommendation is grounded in a real number it just looked up, not a guess.
That grounding is the whole point of the pattern: a model without it would have to invent a plausible-sounding weather report from nothing. ReAct makes the model both a thinker and a doer in the same loop, which is why it shows up as the default building block inside nearly every agent framework.