fix(utils.py): fix codestral streaming

This commit is contained in:
Krrish Dholakia 2024-08-02 07:38:06 -07:00
parent 75fba18c9f
commit fe7e68adc8
2 changed files with 5 additions and 2 deletions

View file

@ -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":