Agent Loop.
An agent's think → call tool → observe → repeat loop until the goal is met. Most modern AI apps are this loop.
Agent loop is the core operating cycle of an AI agent: plan → choose tool → execute → observe → re-evaluate → next step (or finish). ReAct, ReWOO, and most modern agent frameworks are variations on this loop. Good agent loop design needs three things: a clear goal and stop criterion, the ability to observe results at each step, and a fallback or human-escalation path when things go wrong. In production, every iteration of the loop should be traced for debuggability.
Bir agent'ın hedefe ulaşana kadar düşün → araç çağır → sonucu değerlendir → tekrarla döngüsü. Çoğu modern AI app bu döngüden ibarettir.
Agent loop, bir AI ajanının çalışma döngüsünün temel yapısıdır: planla → araç seç → çalıştır → gözlemle → tekrar değerlendir → bir sonraki adıma geç (veya bitir). ReAct, ReWOO ve modern agent framework'lerinin hepsi bu loop'un varyasyonlarıdır. İyi agent loop tasarımı 3 şey ister: net bir hedef ve durma kriteri, her adımda gözlem yapma kabiliyeti, ve hata anında geri dönüş veya insana eskalasyon yolu. Üretimde agent loop'u izlemek için her iterasyon trace edilmelidir.
Related terms.
03Agentic
AgenticWhen a model goes beyond replying — planning, calling tools, and acting toward a goal. Opposite of a passive chatbot.
Tool Call
AgenticA single instance of tool use. The model picks a function with name + JSON args; the runtime runs it and returns the result.
Ralph Loop
WorkflowBash loop pattern popularized by Geoffrey Huntley: re-run an AI agent with fresh context each iteration, read tasks from a plan file, commit on success. The "Ralph Wiggum technique" — forgetful but persistent.