Files
hermes-agent/agent/turn_tool_validation.py
kshitijk4poor 1f041552d7 fix(stream): tidy clean-EOF diagnostics and truncation copy
- _mark_finish_seen helper on the local _diag; also set on the Anthropic
  path when message_delta carries stop_reason
- emit_stream_drop status: 'attempt N/M dropped, reconnecting'
- clean-EOF log wording: server or proxy closed the stream cleanly
- truncated_unreported copy drops the raw finish_reason placeholder
- turn_tool_validation compares against FINISH_REASON_LENGTH
2026-09-26 06:10:53 +05:30

223 lines
10 KiB
Python

"""Tool-call validation for the conversation turn loop: unknown tool names (with
auto-repair and the 3-strike partial exit) and malformed JSON arguments (retry, then
recovery tool results).
Role alternation is preserved on every path: an invalid batch is answered with tool-role
error results (never a user message), and the exits close any open tool-result tail
(#48879). Nothing here imports ``agent.conversation_loop`` at module level (cycle).
"""
from __future__ import annotations
import json
import logging
from dataclasses import dataclass
from typing import Any, Dict, List, Optional
from agent.message_metadata import append_message
from agent.message_sanitization import close_interrupted_tool_sequence, coalesce_tool_call_id
from agent.turn_failure_copy import site_copy, stamp_failure
from hermes_constants import FINISH_REASON_LENGTH
logger = logging.getLogger("agent.conversation_loop")
@dataclass
class ToolValidationVerdict:
"""Outcome of ``validate_tool_calls``.
``action``: ``"ok"`` (dispatch the calls), ``"continue"`` (re-issue the API call —
error results / retry state were recorded) or ``"return"`` (terminal partial
result in ``result``). ``mixed_invalid_batch`` is True when the batch contains BOTH
valid and unknown tool names: only the invalid calls get error results, the valid
ones run."""
action: str
result: Optional[Dict[str, Any]]
mixed_invalid_batch: bool
def _preview_name(name: str) -> str:
return name[:80] + "..." if len(name) > 80 else name
def _append_tool_error_results(messages, tool_calls, content_for) -> None:
"""One tool-role result per call so every tool_call keeps a matching result."""
for tc in tool_calls:
append_message(messages, {
"role": "tool",
"name": tc.function.name,
"tool_call_id": coalesce_tool_call_id(tc),
"content": content_for(tc),
})
def _partial_exit(agent, messages, conversation_history, api_call_count, final_response: str) -> Dict[str, Any]:
"""Terminal partial result. Prior retries or an earlier tool batch leave a tool-result
tail; close it as interrupt aborts do so the next turn is not tool→user (#48879).
This path never reaches finalize_turn, so persist here."""
close_interrupted_tool_sequence(messages, final_response)
agent._persist_session(messages, conversation_history)
return stamp_failure({
"final_response": final_response,
"messages": messages,
"api_calls": api_call_count,
"completed": False,
"partial": True,
"error": final_response,
}, "truncated", True)
def validate_tool_calls(
agent: Any, assistant_message: Any, finish_reason: str, *, messages: List[Dict[str, Any]],
conversation_history: Any, api_call_count: int, effective_task_id: Any,
) -> ToolValidationVerdict:
"""Validate ``assistant_message.tool_calls`` in place (ids uniquified, names
repaired, dict/empty args normalized to JSON strings). Strikes for invalid names
advance only when a turn has NO valid call, so a degenerate model still halts at
3; args cut off mid-stream (routers rewrite ``length`` → ``tool_calls``) are refused
outright rather than retried."""
from agent.conversation_loop import _invalid_tool_name_error_content
tool_calls = assistant_message.tool_calls
valid_names = agent.valid_tool_names
def _verdict(action: str, result: Optional[Dict[str, Any]] = None) -> ToolValidationVerdict:
return ToolValidationVerdict(action=action, result=result, mixed_invalid_batch=_mixed_invalid_batch)
# Uniquify duplicate tool-call ids BEFORE any downstream consumer: the
# pre-API sanitizer keeps only the first call/result per id.
agent._uniquify_tool_call_ids(tool_calls)
# Repair mismatched tool names before validating (model hallucinations).
for tc in tool_calls:
if tc.function.name not in valid_names:
repaired = agent._repair_tool_call(tc.function.name)
if repaired:
agent._vprint(f"{agent.log_prefix}🔧 Auto-repaired tool name: '{tc.function.name}' -> '{repaired}'",
force=True, diagnostic=True)
tc.function.name = repaired
invalid_tool_calls = [tc.function.name for tc in tool_calls if tc.function.name not in valid_names]
# Mixed batch: error-result ONLY the invalid calls and run the valid
# ones; voiding the turn discards real work. Strikes advance only when a
# turn has NO valid call, so a degenerate model still halts at 3.
_mixed_invalid_batch = bool(invalid_tool_calls) and any(
tc.function.name in valid_names for tc in tool_calls
)
if _mixed_invalid_batch:
agent._invalid_tool_retries = 0
_n_valid = sum(1 for tc in tool_calls if tc.function.name in valid_names)
agent._buffer_vprint(
f"⚠️ Unknown tool '{_preview_name(invalid_tool_calls[0])}' in batch — erroring that call, "
f"executing {_n_valid} valid call(s)"
)
elif invalid_tool_calls:
agent._invalid_tool_retries += 1
# Return helpful error to model — model can agent-correct next turn
invalid_preview = _preview_name(invalid_tool_calls[0])
agent._buffer_vprint(f"⚠️ Unknown tool '{invalid_preview}' — sending error to model for agent-correction ({agent._invalid_tool_retries}/3)")
if agent._invalid_tool_retries >= 3:
agent._flush_status_buffer()
agent._vprint(f"{agent.log_prefix}❌ Max retries (3) for invalid tool calls exceeded. Stopping as partial.", force=True, diagnostic=True)
agent._invalid_tool_retries = 0
return _verdict("return", _partial_exit(
agent, messages, conversation_history, api_call_count,
f"Model generated invalid tool call: {invalid_preview}",
))
append_message(messages, agent._build_assistant_message(assistant_message, finish_reason))
# See _invalid_tool_name_error_content for the blank-name anti-priming rationale (#47967).
_append_tool_error_results(
messages, tool_calls,
lambda tc: (
_invalid_tool_name_error_content(tc.function.name, valid_names)
if tc.function.name not in valid_names
else "Skipped: another tool call in this turn used an invalid name. Please retry this tool call."
),
)
return _verdict("continue")
# Reset retry counter on successful tool call validation
agent._invalid_tool_retries = 0
# Validate tool call arguments are valid JSON; empty strings become empty
# objects (common model quirk).
invalid_json_args = []
for tc in tool_calls:
args = tc.function.arguments
if isinstance(args, (dict, list)):
tc.function.arguments = json.dumps(args)
continue
if args is not None and not isinstance(args, str):
tc.function.arguments = args = str(args)
if not args or not args.strip():
tc.function.arguments = "{}"
continue
try:
json.loads(args)
except json.JSONDecodeError as e:
# A mixed-batch invalid-name call never executes (error result later);
# don't let its broken args trigger the whole-turn JSON retry.
if not (_mixed_invalid_batch and tc.function.name not in valid_names):
invalid_json_args.append((tc.function.name, str(e)))
if invalid_json_args:
invalid_names = {n for n, _ in invalid_json_args}
# Routers may rewrite finish_reason "length" → "tool_calls", hiding
# truncation; args not ending in } or ] (stripped) were cut off
# mid-stream.
_truncated = any(
not (tc.function.arguments or "").rstrip().endswith(("}", "]"))
for tc in tool_calls if tc.function.name in invalid_names
)
if _truncated:
agent._vprint(
f"{agent.log_prefix}⚠️ Truncated tool call arguments detected "
f"(finish_reason={finish_reason!r}) — refusing to execute.",
force=True, diagnostic=True,
)
agent._invalid_json_retries = 0
agent._cleanup_task_resources(effective_task_id)
# Blame the output cap only when the model reported one; otherwise the args
# were cut by a stream break or a router rewriting finish_reason (#91717).
_copy = (
site_copy("truncated") if finish_reason == FINISH_REASON_LENGTH
else site_copy("truncated_unreported")
)
return _verdict("return", _partial_exit(
agent, messages, conversation_history, api_call_count, _copy,
))
agent._invalid_json_retries += 1
tool_name, error_msg = invalid_json_args[0]
agent._buffer_vprint(f"⚠️ Invalid JSON in tool call arguments for '{tool_name}': {error_msg}")
if agent._invalid_json_retries < 3:
agent._buffer_vprint(f"🔄 Retrying API call ({agent._invalid_json_retries}/3)...")
# Don't add anything to messages, just retry the API call
return _verdict("continue")
# Instead of returning partial, inject tool error results so the model can recover.
# Using tool results (not user messages) preserves role alternation.
agent._buffer_vprint("⚠️ Injecting recovery tool results for invalid JSON...")
agent._invalid_json_retries = 0 # Reset for next attempt
# Append the assistant message with its (broken) tool_calls, then one
# error result per call.
append_message(messages, agent._build_assistant_message(assistant_message, finish_reason))
def _json_error_result(tc) -> str:
if tc.function.name not in invalid_names:
return "Skipped: other tool call in this response had invalid JSON."
err = next(e for n, e in invalid_json_args if n == tc.function.name)
return (
f"Error: Invalid JSON arguments. {err}. "
f"For tools with no required parameters, use an empty object: {{}}. "
f"Please retry with valid JSON."
)
_append_tool_error_results(messages, tool_calls, _json_error_result)
return _verdict("continue")
# Reset retry counter on successful JSON validation
agent._invalid_json_retries = 0
return _verdict("ok")