From 2c5fc1ffb4da30e784e450b2a28afbe10875bd8d 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 9c6f0b8498..7596de81d2 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,