A ceiling that was a schedule, and a reply that ended in silence
Reported: an ordinary chat with a small local model researching a question well -- six searches, each one informed by the last -- stopped at the round limit and produced no answer at all. Two separate faults, and the second is the serious one. The limit was 5 and it should not have been a working number. It was 1 once, and the note beside it already said why that was wrong: a count low enough to be reached by ordinary work is a schedule, not a ceiling, and it overrides the model's judgement on every turn instead of catching a runaway. Five was the same mistake with a larger number. It is 0 now -- no ceiling, falling back to MAX_TOOL_ROUNDS as a runaway backstop, which is the shape `Limits.steps` already had for an agent chat. What bounds an ordinary chat is the context window, which is a real limit rather than a guess at how much looking-up a question deserves. An administrator who wants a ceiling can still set one. The worse fault: *every* budget ended the reply where it was noticed. That is survivable for a model that narrates as it works and produces nothing at all for one that goes straight to tool calls -- an empty bubble with a red line under it, and everything it had gathered thrown away. `_wrap_up` withdraws the tools and asks once more instead. What it found is in the transcript either way; one request turns it into an answer. Same move `plan_submit` makes, and the reason the loop now runs to `budget + 2`: the round at the budget notices, the one after it answers. The event stays, because an answer the model chose to give and one it gave because it ran out of room read identically otherwise. `_too_big` is the one exception and stays a hard stop. It *is* the finding that there is no room for another request, so a wrap-up round would be the same overflow with an upstream error in place of an explanation. `core.keep_working` was gated on the agent family and is now gated on `unbounded`, the exact complement of `round_budget` -- so an ordinary chat with no ceiling is told to work until the job is done rather than being told nothing, and is never told it has a budget of two hundred, which it would ration. The regression test asserts the reply is not empty, and fails with `'' == 'Here is what I found.'` against the old code -- which is exactly what was seen. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -149,6 +149,11 @@ def context_variables(
|
||||
# same sentence with a different number in it. Blank when there is no
|
||||
# ceiling at all, so the fragment vanishes rather than promising zero.
|
||||
"round_budget": str(settings_store.chat_rounds(db) or ""),
|
||||
# The complement, and the gate on `core.keep_working`. Exactly one of
|
||||
# the two is ever set: a model told it has a budget rations it and stops
|
||||
# early to report progress, and one told to keep going does the work.
|
||||
# Not rendered anywhere either.
|
||||
"unbounded": "" if settings_store.chat_rounds(db) else "yes",
|
||||
"memory_limit": str(memories_service.MAX_MEMORY_CHARS),
|
||||
"tool_names": _tool_names(offered),
|
||||
"memories": memories_service.block(db, user) if "memory" in families else "",
|
||||
@@ -219,8 +224,11 @@ def _agent_values(db: DBSession, chat, user) -> dict[str, str]:
|
||||
"max_rounds": str(context.limits.steps),
|
||||
# Blanked, which is what makes `core.rounds` vanish here: `steps` is a
|
||||
# runaway backstop and telling a model it has a budget of two hundred
|
||||
# invites it to ration one.
|
||||
# invites it to ration one. `unbounded` is its complement and is what
|
||||
# `core.keep_working` is gated on, so an agent chat always gets the
|
||||
# keep-going half whatever the instance setting says.
|
||||
"round_budget": "",
|
||||
"unbounded": "yes",
|
||||
"project_files": _project_files(db, chat, context, settings_store, index_service),
|
||||
# Already resolved on the context, from one primary-key lookup in
|
||||
# `agent_session.resolve`. A plan the model cannot see is a plan it
|
||||
|
||||
Reference in New Issue
Block a user