tool_responses server tests recordings

This commit is contained in:
Ashwin Bharambe 2025-10-08 15:47:46 -07:00
parent 90333b5658
commit ecea7ccdb8
31 changed files with 34823 additions and 0 deletions

View file

@ -325,6 +325,9 @@ def _normalize_response(data: dict[str, Any], request_hash: str) -> dict[str, An
if "eval_duration" in data and data["eval_duration"] is not None:
data["eval_duration"] = 0
# Normalize file IDs and vector store IDs to ensure consistent hashing across replays
data = _normalize_file_ids(data)
return data