style: more refs work (#33707)

This commit is contained in:
Mason Daugherty
2025-10-28 14:43:28 -04:00
committed by GitHub
parent 6ee19473ba
commit e5e1d6c705
33 changed files with 273 additions and 265 deletions

View File

@@ -349,4 +349,4 @@ def test_no_duplicate_tool_calls_when_multiple_tools() -> None:
# Ensure there are no duplicate ids
ids = [tc.get("id") for tc in tool_calls if isinstance(tc, dict)]
assert len(ids) == 2
assert len(set(ids)) == 2, f"Duplicate tool call ids found: {ids}"
assert len(set(ids)) == 2, f"Duplicate tool call IDs found: {ids}"