fix: skip malformed document tool call items (#3494)

This commit is contained in:
Rohith Matam
2026-06-08 17:25:31 -04:00
committed by GitHub
parent 4e497f4878
commit 049833e309
2 changed files with 36 additions and 2 deletions
+12 -2
View File
@@ -1258,14 +1258,24 @@ def function_call_to_tool_block(name: str, arguments: str) -> Optional[ToolBlock
content = "\n".join(parts)
elif tool_type == "edit_document":
blocks = []
for edit in args.get("edits", []):
edits = args.get("edits", [])
if not isinstance(edits, list):
edits = []
for edit in edits:
if not isinstance(edit, dict):
continue
blocks.append(
f'<<<FIND>>>\n{edit.get("find", "")}\n<<<REPLACE>>>\n{edit.get("replace", "")}\n<<<END>>>'
)
content = "\n".join(blocks)
elif tool_type == "suggest_document":
blocks = []
for s in args.get("suggestions", []):
suggestions = args.get("suggestions", [])
if not isinstance(suggestions, list):
suggestions = []
for s in suggestions:
if not isinstance(s, dict):
continue
blocks.append(
f'<<<FIND>>>\n{s.get("find", "")}\n<<<SUGGEST>>>\n{s.get("replace", "")}\n<<<REASON>>>\n{s.get("reason", "")}\n<<<END>>>'
)