explainx.ainewsletter3.5k
TrendingNewsPathwaysSkills
Pricing
explainx.ai

Upskill in AI — 16 free pathways, live workshops & bootcamps, and 50+ courses from practitioners. Plus the skills, tools, and MCP servers to practice on.

follow us

corporate training

support@explainx.ai

get started

Find your pathTake Free Evaluation

learn

pathways — start freeworkshopsbootcampscoursescertificationsmock testsexplainx universitycorporate traininglearn skills & mcp

discover

skillsmcp serversexplainx mcptoolsagentsllmsdesignsdictionaryagi trackerranks

company

aboutvisionmissionteaminstructorscommunityhackathonscareers

content

daily AI newsstate of AI — live resultsblogreleasespromptsgeneratorsresource libraryfor LLMsexplainx.ai kids

solutions

all solutionsdeveloper upskillingmarketing upskillingproduct manager upskillingleadership upskilling

newsletter · weekly

Get AI news, tools, and insights in your inbox.

supportprivacytermsdata rightshow we create contentsubmission guidelines

© 2026 AISOLO Technologies Pvt Ltd

On this page

  • What stop_reason tells you
  • The correct loop structure
  • The anti-pattern: inspecting assistant text
  • Programmatic vs prompt-based enforcement (Task Statement 1.1)
  • Forced tool use and task completion (Task Statement 1.4)
  • Why iteration caps are the wrong safety mechanism
  • Appending tool results correctly
  • The CCA exam and Domain 1
  • Key takeaways
← Back to blog

explainx / blog

Agentic Loop Implementation: stop_reason, tool_use, and end_turn Explained

How to implement a correct agentic loop using stop_reason control flow — the foundation of Domain 1 of the Claude Certified Architect exam.

Jun 29, 2026·6 min read·Yash Thakker
ClaudeAgent SDKAgentic ArchitectureClaude Certified Architect
go deep
Agentic Loop Implementation: stop_reason, tool_use, and end_turn Explained

Every Claude-powered agent you build runs on the same control structure: send a request, inspect stop_reason, decide what happens next. Getting this wrong is the most common source of production failures in agentic systems — and it is the explicit focus of Domain 1 of the Claude Certified Architect – Foundations exam (Agentic Architecture & Orchestration, 27% of the exam).

This post walks through what the agentic loop actually is, the two stop reasons that matter, and the mistakes that sink real deployments.


What stop_reason tells you

When Claude returns a response, the stop_reason field signals why generation stopped. There are two values that drive agentic control flow:

  • tool_use — Claude has decided to call one or more tools. The response content includes one or more tool_use blocks. Your code must execute those tools and append the results before making the next API call.
  • end_turn — Claude has finished its work and returned a final text response. The loop exits here.

A third value, max_tokens, means the response was cut off due to the token limit. This is treated as an error condition in most production systems — you either retry with a higher limit or escalate.

The exam cares that you understand these three values exhaustively. Other stop reasons exist (stop_sequence) but the two above cover the primary control flow.


The correct loop structure

The agentic loop is a while-loop keyed on stop_reason. Here is the structure in pseudocode:

snippet
messages = [{ role: "user", content: initial_prompt }]

while True:
    response = claude_api.messages.create(
        model=model,
        tools=tool_definitions,
        messages=messages
    )

    # Append assistant turn to history
    messages.append({ role: "assistant", content: response.content })

    if response.stop_reason == "end_turn":
        return extract_text(response.content)

    if response.stop_reason == "tool_use":
        tool_results = []
        for block in response.content:
            if block.type == "tool_use":
                result = execute_tool(block.name, block.input)
                tool_results.append({
                    type: "tool_result",
                    tool_use_id: block.id,
                    content: result
                })

        messages.append({ role: "user", content: tool_results })
        continue

    # max_tokens or unknown — raise error
    raise AgentLoopError(f"Unexpected stop_reason: {response.stop_reason}")

Three rules encoded here:

  1. Append every assistant turn before looping. The conversation history must be complete. Missing assistant turns produces invalid_request_error on the next call.
  2. Tool results go in a user role message with tool_result blocks. Each result references the original tool_use_id. This is how Claude correlates the call with the answer.
  3. Loop terminates on end_turn, not on any other condition. The loop must not exit because the text "looks complete" or because you hit an iteration counter.

The anti-pattern: inspecting assistant text

A common mistake is checking the assistant's text output to decide whether to continue:

snippet
# WRONG
if "I have completed the task" in response_text:
    return response_text

This breaks because:

  • Claude may say "I have gathered the information" before deciding to call another tool. Text does not predict the next stop_reason.
  • Parsing natural language for control flow creates fragile coupling between prompt wording and loop behavior.
  • The exam explicitly contrasts programmatic enforcement (using stop_reason) against prompt-based enforcement (telling the model "stop when done"). Task Statement 1.1 tests exactly this distinction.

The only reliable signal is stop_reason. Text is payload, not control flow.


Programmatic vs prompt-based enforcement (Task Statement 1.1)

The CCA exam frames a specific contrast in Task Statement 1.1: choosing between programmatic enforcement and prompt-based enforcement for loop termination and workflow control.

Prompt-based enforcement means you instruct Claude in the system prompt to follow a protocol: "call submit_result when you are finished." This works most of the time but can fail when the model misses the instruction under long context pressure or complex tool interactions.

Programmatic enforcement means your code controls what happens next, independent of what Claude says. The loop only exits when stop_reason == "end_turn". Tool execution happens when stop_reason == "tool_use". The model has no ability to "break out" of this structure through text alone.

The exam tests your ability to identify which approach is appropriate. For production workflows with deterministic completion criteria, programmatic enforcement is the correct answer. Prompt-based enforcement is appropriate only for soft behavioral guidance that does not affect control flow (tone, format, persona).


Forced tool use and task completion (Task Statement 1.4)

Task Statement 1.4 covers how you enforce that Claude must call a specific tool before completing. The mechanism is tool_choice:

python
tool_choice = { "type": "tool", "name": "submit_result" }

Setting tool_choice to a specific tool forces that tool call on the next API response. This is used in workflows where the final step must be a structured submission — for example, an extraction agent that must call submit_extraction with validated JSON rather than returning free text.

The exam scenario that tests this is the structured data extraction frame: Claude must produce a validated JSON object via tool call, not prose. Using tool_choice: { type: "tool", name: "submit_extraction" } on the final pass guarantees stop_reason will be tool_use pointing at that specific tool — no ambiguity about whether Claude "decided" to submit.

Three tool_choice values to know:

table · 2 cols
ValueBehavior
autoClaude decides whether and which tool to call
anyClaude must call at least one tool (but chooses which)
{ type: "tool", name: "X" }Claude must call tool X specifically

Why iteration caps are the wrong safety mechanism

A common but incorrect pattern is adding a maximum iteration counter:

snippet
# WRONG safety pattern
for i in range(10):
    response = call_claude()
    if response.stop_reason == "end_turn":
        break
    execute_tools(response)

The problem: if Claude legitimately needs 11 tool calls to complete the task, this loop exits early and returns a partial result silently. The caller has no way to distinguish a complete response from a truncated one.

The correct safety mechanism is a timeout at the wall-clock or token-spend level, combined with explicit error handling:

snippet
if iterations > MAX_ITERATIONS:
    raise AgentLoopError("Loop exceeded iteration budget — possible cycle detected")

Raise, do not return partial results. The orchestrator can then decide to retry, escalate, or fail the task explicitly. This distinction — raise vs silently truncate — appears in exam questions about reliability and error propagation.


Appending tool results correctly

The conversation history after a tool call looks like this:

snippet
[
  { role: "user", content: "Find the current price of AAPL" },
  { role: "assistant", content: [
      { type: "text", text: "I'll look that up." },
      { type: "tool_use", id: "tu_abc", name: "get_stock_price", input: { ticker: "AAPL" } }
  ]},
  { role: "user", content: [
      { type: "tool_result", tool_use_id: "tu_abc", content: "189.42" }
  ]}
]

Three details that get tested:

  1. The assistant message must include all content blocks from the response — both text and tool_use. Stripping the text block corrupts the history.
  2. tool_use_id in the result must match the id from the corresponding tool_use block exactly.
  3. Multiple tool calls in a single response produce multiple tool_result blocks in a single user message — not separate user messages per tool.

The CCA exam and Domain 1

This is a core topic in Domain 1 of the Claude Certified Architect – Foundations exam. Domain 1 (Agentic Architecture & Orchestration) carries 27% weight — the largest single domain. Questions in this domain typically present a code snippet or scenario description and ask you to identify the correct control flow, the bug in the loop, or the appropriate enforcement mechanism.

The scenario frames most likely to test agentic loop knowledge are:

  • Customer support resolution agent — multi-tool loop with escalation
  • Multi-agent research system — coordinator managing subagent tool calls

If you are preparing for the CCA exam, the highest-leverage study in Domain 1 is: (1) stop_reason control flow, (2) conversation history construction, (3) programmatic vs prompt-based enforcement, and (4) tool_choice for forced completion.

Practice with CCA mock tests on explainx.ai to drill scenario-based questions against the clock.


Key takeaways

  • stop_reason is the only reliable signal for loop control. Never use assistant text as a branching condition.
  • Append every assistant turn — including all content blocks — before the next API call.
  • Tool results go in a user role message with tool_result blocks referencing tool_use_id.
  • Programmatic enforcement (code controls the loop) beats prompt-based enforcement for deterministic workflow steps.
  • tool_choice with a named tool forces completion via a specific tool — the correct pattern for structured submission steps.
  • Iteration caps that silently truncate are an anti-pattern; raise errors and let the orchestrator decide.

Exam domain weights and task statements are based on the Claude Certified Architect – Foundations Certification Exam Guide published by Anthropic Academy. Verify current weights on Anthropic Academy before your exam date.

Spotted something out of date? Let us know.
Yash Thakker

Written by

Yash Thakker

Yash is an AI expert with over 300K learners. Join his workshops →

Related posts

Aug 15, 2026

Anthropic's August 2026 Risk Report: Risk Level Raised to "Low"

Anthropic's August 2026 Risk Report raises its own risk assessment on two separate threat models — misalignment and chemical/biological weapons — from "very low" to "low," and discloses a nearly year-long gap where bioweapon safeguard classifiers were silently disabled on 133 million human-feedback conversations. explainx.ai reads the 186-page document so you don't have to.

Aug 13, 2026

Anthropic Reportedly in Talks to Buy Decart for $6 Billion

Bloomberg reported on August 13, 2026 that Anthropic is in early-stage talks to acquire Israeli AI infrastructure and video-generation startup Decart for approximately $6 billion. Haaretz, Calcalist, i24News, and Yahoo Finance have corroborated the report, but nothing is signed and talks could still fall through. Here's what a deal this size would mean for Claude's compute capacity and inference roadmap if it closes.

Aug 13, 2026

Claude in Chrome Sessions Now Sync Across Desktop, Web, and Mobile

Anthropic announced that Claude in Chrome sessions no longer live only in the browser tab that started them — conversations, skills, and connectors now follow your account across desktop, web, and mobile. explainx.ai breaks down what actually changed, who has it today, and how it fits with Claude Cowork's own cross-device sessions.