mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-09 22:31:41 +00:00
fix: correct embed-multilingual-light-v3.0 pricing (1000x too high)
input_cost_per_token was 0.0001 ($100 per 1M tokens), which is the per-1K price entered as per-token. Cohere prices all embed v3 models, light included, at $0.10 per 1M tokens = 1e-07 per token, matching every sibling entry in this file (embed-english-light-v3.0, embed-multilingual-v3.0) and this model's own OCI mirror (oci/cohere.embed-multilingual-light-v3.0). Source: https://cohere.com/pricing (Embed: $0.10 / 1M tokens)
This commit is contained in:
parent
c737789b26
commit
24f8b9466c
2 changed files with 2 additions and 2 deletions
|
|
@ -14569,7 +14569,7 @@
|
|||
"supports_embedding_image_input": true
|
||||
},
|
||||
"embed-multilingual-light-v3.0": {
|
||||
"input_cost_per_token": 0.0001,
|
||||
"input_cost_per_token": 1e-07,
|
||||
"litellm_provider": "cohere",
|
||||
"max_input_tokens": 1024,
|
||||
"max_tokens": 1024,
|
||||
|
|
|
|||
|
|
@ -14569,7 +14569,7 @@
|
|||
"supports_embedding_image_input": true
|
||||
},
|
||||
"embed-multilingual-light-v3.0": {
|
||||
"input_cost_per_token": 0.0001,
|
||||
"input_cost_per_token": 1e-07,
|
||||
"litellm_provider": "cohere",
|
||||
"max_input_tokens": 1024,
|
||||
"max_tokens": 1024,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue