From 8ed8fa9733e97e3b63657d685433369d1ddb8e6e Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Mon, 20 May 2024 08:59:26 +0300 Subject: [PATCH] tests : fix the fix 0.8f -> 0.8 ggml-ci --- examples/server/tests/features/steps/steps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/server/tests/features/steps/steps.py b/examples/server/tests/features/steps/steps.py index 0cff7e37f..26d9359d7 100644 --- a/examples/server/tests/features/steps/steps.py +++ b/examples/server/tests/features/steps/steps.py @@ -883,7 +883,7 @@ async def request_completion(prompt, "cache_prompt": cache_prompt, "id_slot": id_slot, "seed": seed if seed is not None else 42, - "temperature": temperature if temperature is not None else 0.8f, + "temperature": temperature if temperature is not None else 0.8, "n_probs": 2, }, headers=headers,