Skip to content

Commit 2f5f06e

Browse files
committed
Rewording
1 parent be339c5 commit 2f5f06e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

python/openai/tests/test_chat_completions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,10 +369,10 @@ def test_chat_completions_temperature_tensorrtllm(
369369
assert response1_text == response2_text
370370
assert response1_text != response3_text
371371

372-
# TODO: Remove xfail for LLM API when it supports seed
372+
# TODO: Remove xfail for LLM API when it's verified.
373373
@pytest.mark.xfail(
374374
condition=os.getenv("LLMAPI_SETUP") == "1",
375-
reason="Didn't see any difference in responses with different seeds when using LLM API. Skipping for now.",
375+
reason="Seed parameter support to be verified for LLM API",
376376
)
377377
# Simple tests to verify random seed roughly behaves as expected
378378
def test_chat_completions_seed(self, client, model: str, messages: List[dict]):

python/openai/tests/test_completions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,10 +239,10 @@ def test_completions_temperature_tensorrtllm(
239239
assert response1_text == response2_text
240240
assert response1_text != response3_text
241241

242-
# TODO: Remove xfail for LLM API when it supports seed
242+
# TODO: Remove xfail for LLM API when it's verified.
243243
@pytest.mark.xfail(
244244
condition=os.getenv("LLMAPI_SETUP") == "1",
245-
reason="Didn't see any difference in responses with different seeds when using LLM API. Skipping for now.",
245+
reason="Seed parameter support to be verified for LLM API",
246246
)
247247
# Simple tests to verify seed roughly behaves as expected
248248
def test_completions_seed(self, client, model: str, prompt: str):

0 commit comments

Comments
 (0)