diff --git a/llama_stack/testing/inference_recorder.py b/llama_stack/testing/inference_recorder.py index ce49a141f..9f8140c08 100644 --- a/llama_stack/testing/inference_recorder.py +++ b/llama_stack/testing/inference_recorder.py @@ -64,7 +64,7 @@ def normalize_request(method: str, url: str, headers: dict[str, Any], body: dict from urllib.parse import urlparse parsed = urlparse(url) - normalized = { + normalized: dict[str, Any] = { "method": method.upper(), "endpoint": parsed.path, "body": body,