(test) aembedding includes custom_llm_provider

This commit is contained in:
ishaan-jaff 2024-01-12 17:52:14 -08:00
parent 39f724d9f3
commit 99dcce1e0f

View file

@ -319,6 +319,12 @@ def test_aembedding_azure():
input=["good morning from litellm", "this is another item"], input=["good morning from litellm", "this is another item"],
) )
print(response) print(response)
print(
"hidden params - custom_llm_provider",
response._hidden_params["custom_llm_provider"],
)
assert response._hidden_params["custom_llm_provider"] == "azure"
except Exception as e: except Exception as e:
pytest.fail(f"Error occurred: {e}") pytest.fail(f"Error occurred: {e}")