From 98f73b35ba9578d88e0b11ebc9efc6519dd5dc3b Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Thu, 22 Aug 2024 11:05:25 -0700 Subject: [PATCH] docs(utils.py): cleanup docstring --- litellm/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/utils.py b/litellm/utils.py index 9c6f0b849..7596de81d 100644 --- a/litellm/utils.py +++ b/litellm/utils.py @@ -7128,7 +7128,7 @@ def exception_type( elif "A conversation must start with a user message." in error_str: exception_mapping_worked = True raise BadRequestError( - message=f"BedrockException - {error_str}\n. Pass in default user message via `completion(..,user_continue_message=)` or enable `litellm.modify_params=True`.", + message=f"BedrockException - {error_str}\n. Pass in default user message via `completion(..,user_continue_message=)` or enable `litellm.modify_params=True`.\nFor Proxy: do via `litellm_settings::modify_params: True` or user_continue_message under `litellm_params`", model=model, llm_provider="bedrock", response=original_exception.response,