From 24f8b9466cecd89134e7e97352932a008d795054 Mon Sep 17 00:00:00 2001 From: Vishal Vishwakarma Date: Sat, 4 Jul 2026 17:56:07 +0530 Subject: [PATCH] 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) --- litellm/model_prices_and_context_window_backup.json | 2 +- model_prices_and_context_window.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/model_prices_and_context_window_backup.json b/litellm/model_prices_and_context_window_backup.json index 26d54c05ffb..b7611b6a263 100644 --- a/litellm/model_prices_and_context_window_backup.json +++ b/litellm/model_prices_and_context_window_backup.json @@ -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, diff --git a/model_prices_and_context_window.json b/model_prices_and_context_window.json index a3dcdaed3f7..2cae3902615 100644 --- a/model_prices_and_context_window.json +++ b/model_prices_and_context_window.json @@ -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,