From 45e6440b0a9870c5ffb036cbf5c71d0c3dd40352 Mon Sep 17 00:00:00 2001 From: yuneng-jiang Date: Mon, 16 Feb 2026 14:04:51 -0800 Subject: [PATCH] fixing test_basic_openai_responses_api --- tests/llm_responses_api_testing/base_responses_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/llm_responses_api_testing/base_responses_api.py b/tests/llm_responses_api_testing/base_responses_api.py index 0850f74223..f38ce67ced 100644 --- a/tests/llm_responses_api_testing/base_responses_api.py +++ b/tests/llm_responses_api_testing/base_responses_api.py @@ -74,7 +74,7 @@ def validate_responses_api_response(response, final_chunk: bool = False): "top_p": (int, float, type(None)), "max_output_tokens": (int, type(None)), "previous_response_id": (str, type(None)), - "reasoning": dict, + "reasoning": (dict, type(None)), "status": str, "text": dict, "truncation": (str, type(None)),