From 1724d06f9d50b26b1215c62185adae1da5da586c Mon Sep 17 00:00:00 2001 From: drbh Date: Wed, 21 Feb 2024 11:32:14 -0500 Subject: [PATCH] fix: adjust 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 576b9236..f900e3a8 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. #[serde(default)] + /// 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,