fix cohere / cohere_chat when timeout is None

This commit is contained in:
Ishaan Jaff 2024-08-09 12:10:02 -07:00
parent fac610beab
commit 0561c06bcf

View file

@ -3387,7 +3387,7 @@ def embedding(
client=client, client=client,
aembedding=aembedding, aembedding=aembedding,
) )
elif custom_llm_provider == "cohere": elif custom_llm_provider == "cohere" or custom_llm_provider == "cohere_chat":
cohere_key = ( cohere_key = (
api_key api_key
or litellm.cohere_key or litellm.cohere_key
@ -3404,7 +3404,7 @@ def embedding(
logging_obj=logging, logging_obj=logging,
model_response=EmbeddingResponse(), model_response=EmbeddingResponse(),
aembedding=aembedding, aembedding=aembedding,
timeout=float(timeout), timeout=timeout,
client=client, client=client,
) )
elif custom_llm_provider == "huggingface": elif custom_llm_provider == "huggingface":