mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 11:14:04 +00:00
fix cohere / cohere_chat when timeout is None
This commit is contained in:
parent
fac610beab
commit
0561c06bcf
1 changed files with 2 additions and 2 deletions
|
@ -3387,7 +3387,7 @@ def embedding(
|
|||
client=client,
|
||||
aembedding=aembedding,
|
||||
)
|
||||
elif custom_llm_provider == "cohere":
|
||||
elif custom_llm_provider == "cohere" or custom_llm_provider == "cohere_chat":
|
||||
cohere_key = (
|
||||
api_key
|
||||
or litellm.cohere_key
|
||||
|
@ -3404,7 +3404,7 @@ def embedding(
|
|||
logging_obj=logging,
|
||||
model_response=EmbeddingResponse(),
|
||||
aembedding=aembedding,
|
||||
timeout=float(timeout),
|
||||
timeout=timeout,
|
||||
client=client,
|
||||
)
|
||||
elif custom_llm_provider == "huggingface":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue