fix(azure.py): fix raw response dump

This commit is contained in:
Krrish Dholakia 2024-08-27 13:44:38 -07:00
parent 18731cf42b
commit 63adb3f940
2 changed files with 6 additions and 4 deletions

View file

@ -1130,7 +1130,8 @@ class AzureChatCompletion(BaseLLM):
else:
azure_client = client
## COMPLETION CALL
response = azure_client.embeddings.with_raw_response.create(**data, timeout=timeout) # type: ignore
raw_response = azure_client.embeddings.with_raw_response.create(**data, timeout=timeout) # type: ignore
response = raw_response.parse()
## LOGGING
logging_obj.post_call(
input=input,