From 42125f0e10c014befb28bb0a14ce73a5a7d57822 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Sun, 7 Dec 2025 15:54:49 +0200 Subject: [PATCH] tests : check temp back to 0.0 --- tools/server/tests/unit/test_completion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/server/tests/unit/test_completion.py b/tools/server/tests/unit/test_completion.py index f146d6475c..57fca8231a 100644 --- a/tools/server/tests/unit/test_completion.py +++ b/tools/server/tests/unit/test_completion.py @@ -494,7 +494,7 @@ def test_n_probs_post_sampling(): res = server.make_request("POST", "/completion", data={ "prompt": "I believe the meaning of life is", "n_probs": 10, - "temperature": 1.0, + "temperature": 0.0, "n_predict": 5, "post_sampling_probs": True, })