From 3e22cdd14ce3a1257c3ae3a657ab7d0f96109084 Mon Sep 17 00:00:00 2001 From: drbh Date: Wed, 21 Feb 2024 11:41:06 -0500 Subject: [PATCH] fix: pre commit trailing whitespace typo --- router/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router/src/lib.rs b/router/src/lib.rs index f900e3a8..70619c60 100644 --- a/router/src/lib.rs +++ b/router/src/lib.rs @@ -289,7 +289,7 @@ pub struct CompletionRequest { pub temperature: Option, /// An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the - /// tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. + /// tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. #[serde(default)] #[schema(nullable = true, example = 0.95)] pub top_p: Option,