From 238b9689e04e5c5c31f7f38ba89302853ce6a93e Mon Sep 17 00:00:00 2001 From: ochafik Date: Mon, 30 Dec 2024 04:59:13 +0000 Subject: [PATCH] Update test_chat_completion.py --- examples/server/tests/unit/test_chat_completion.py | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/server/tests/unit/test_chat_completion.py b/examples/server/tests/unit/test_chat_completion.py index ef716cc1a..996cd0aa0 100644 --- a/examples/server/tests/unit/test_chat_completion.py +++ b/examples/server/tests/unit/test_chat_completion.py @@ -104,7 +104,6 @@ def test_chat_completion_with_openai_library(): @pytest.mark.parametrize("response_format,n_predicted,re_content", [ ({"type": "json_object", "schema": {"const": "42"}}, 6, "\"42\""), - ({"type": "json_schema", "json_schema": {"const": "42"}}, 6, "\"42\""), ({"type": "json_object", "schema": {"items": [{"type": "integer"}]}}, 10, "[ -3000 ]"), ({"type": "json_object"}, 10, "(\\{|John)+"), ({"type": "sound"}, 0, None),