From 12d7ea914a9e988ee2d40c3e284e0c26865dc7d3 Mon Sep 17 00:00:00 2001 From: Tim Xia Date: Sat, 2 Mar 2024 13:34:39 -0500 Subject: [PATCH] update comments --- litellm/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/utils.py b/litellm/utils.py index b0cca2cb3..67bf7108f 100644 --- a/litellm/utils.py +++ b/litellm/utils.py @@ -4555,7 +4555,7 @@ def get_optional_params( supported_params = ["max_tokens", "temperature", "stop", "top_p", "stream"] _check_valid_arg(supported_params=supported_params) # mistral params on bedrock - # \"max_tokens_to_sample\":300,\"temperature\":0.5,\"top_p\":1,\"stop_sequences\":[\"\\\\n\\\\nHuman:\"]}" + # \"max_tokens\":400,\"temperature\":0.7,\"top_p\":0.7,\"stop\":[\"\\\\n\\\\nHuman:\"]}" if max_tokens is not None: optional_params["max_tokens"] = max_tokens if temperature is not None: