From 89e32db32147802ac10471b665e795fa1a58ea8d Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Fri, 3 Nov 2023 12:59:22 -0700 Subject: [PATCH] (fix) remove errant tg ai print statements --- litellm/llms/together_ai.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/llms/together_ai.py b/litellm/llms/together_ai.py index 9d18bfa7cf..daddd472b8 100644 --- a/litellm/llms/together_ai.py +++ b/litellm/llms/together_ai.py @@ -99,7 +99,7 @@ def completion( if k not in optional_params: # completion(top_k=3) > togetherai_config(top_k=3) <- allows for dynamic variables to be passed in optional_params[k] = v - print(f"CUSTOM PROMPT DICT: {custom_prompt_dict}; model: {model}") + print_verbose(f"CUSTOM PROMPT DICT: {custom_prompt_dict}; model: {model}") if model in custom_prompt_dict: # check if the model has a registered custom prompt model_prompt_details = custom_prompt_dict[model]