forked from phoenix/litellm-mirror
fix(utils.py): fix codestral streaming
This commit is contained in:
parent
75fba18c9f
commit
fe7e68adc8
2 changed files with 5 additions and 2 deletions
|
@ -45,7 +45,10 @@ def cost_router(
|
|||
- str, the specific google cost calc function it should route to.
|
||||
"""
|
||||
if custom_llm_provider == "vertex_ai" and (
|
||||
"claude" in model or "llama" in model or "mistral" in model
|
||||
"claude" in model
|
||||
or "llama" in model
|
||||
or "mistral" in model
|
||||
or "codestral" in model
|
||||
):
|
||||
return "cost_per_token"
|
||||
elif custom_llm_provider == "gemini":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue