fix - test using specific commit

This commit is contained in:
Ishaan Jaff
2024-04-05 16:10:54 -07:00
parent b727eb783e
commit 37ef5c0cbf
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -7,6 +7,8 @@ from litellm.proxy._types import KeyManagementSystem, KeyManagementSettings
import httpx
import dotenv
print("IMPORT LITELLM on Ishaan's commit") # noqa
dotenv.load_dotenv()
#############################################
if set_verbose == True:
+1 -1
View File
@@ -692,7 +692,7 @@ def anthropic_messages_pt_xml(messages: list):
if messages[msg_i].get(
"tool_calls", []
): # support assistant tool invoke convertion
assistant_text += convert_to_anthropic_tool_invoke(
assistant_text += convert_to_anthropic_tool_invoke( # type: ignore
messages[msg_i]["tool_calls"]
)