From edb8afb2191bef835349d8b560b470ca75c70f61 Mon Sep 17 00:00:00 2001 From: Derek Higgins Date: Thu, 16 Oct 2025 14:59:29 +0100 Subject: [PATCH] chore: remove test_cases/openai/responses.json (#3823) Its unused Signed-off-by: Derek Higgins --- .../test_cases/openai/responses.json | 37 ------------------- tests/integration/test_cases/test_case.py | 1 - 2 files changed, 38 deletions(-) delete mode 100644 tests/integration/test_cases/openai/responses.json diff --git a/tests/integration/test_cases/openai/responses.json b/tests/integration/test_cases/openai/responses.json deleted file mode 100644 index d17d0cd4f..000000000 --- a/tests/integration/test_cases/openai/responses.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "non_streaming_01": { - "data": { - "question": "Which planet do humans live on?", - "expected": "Earth" - } - }, - "non_streaming_02": { - "data": { - "question": "Which planet has rings around it with a name starting with letter S?", - "expected": "Saturn" - } - }, - "streaming_01": { - "data": { - "question": "What's the name of the Sun in latin?", - "expected": "Sol" - } - }, - "streaming_02": { - "data": { - "question": "What is the name of the US captial?", - "expected": "Washington" - } - }, - "tools_web_search_01": { - "data": { - "input": "How many experts does the Llama 4 Maverick model have?", - "tools": [ - { - "type": "web_search" - } - ], - "expected": "128" - } - } -} diff --git a/tests/integration/test_cases/test_case.py b/tests/integration/test_cases/test_case.py index fc3bf97c8..a23963cb4 100644 --- a/tests/integration/test_cases/test_case.py +++ b/tests/integration/test_cases/test_case.py @@ -12,7 +12,6 @@ class TestCase: _apis = [ "inference/chat_completion", "inference/completion", - "openai/responses", ] _jsonblob = {}