diff --git a/litellm/model_prices_and_context_window_backup.json b/litellm/model_prices_and_context_window_backup.json index 4c56210625..6ab7501a27 100644 --- a/litellm/model_prices_and_context_window_backup.json +++ b/litellm/model_prices_and_context_window_backup.json @@ -88,6 +88,24 @@ "search_context_size_high": 0.050 } }, + "watsonx/ibm/granite-3-8b-instruct": { + "max_tokens": 8192, + "max_input_tokens": 8192, + "max_output_tokens": 1024, + "input_cost_per_token": 0.0002, + "output_cost_per_token": 0.0002, + "litellm_provider": "watsonx", + "mode": "chat", + "supports_function_calling": true, + "supports_parallel_function_calling": false, + "supports_vision": false, + "supports_audio_input": false, + "supports_audio_output": false, + "supports_prompt_caching": true, + "supports_response_schema": true, + "supports_system_messages": true, + "deprecation_date": null + } "gpt-4o-search-preview-2025-03-11": { "max_tokens": 16384, "max_input_tokens": 128000, @@ -3303,6 +3321,24 @@ "supports_response_schema": true, "supports_tool_choice": true }, + "groq/whisper-large-v3": { + "mode": "audio_transcription", + "input_cost_per_second": 0.00003083, + "output_cost_per_second": 0, + "litellm_provider": "groq" + }, + "groq/whisper-large-v3-turbo": { + "mode": "audio_transcription", + "input_cost_per_second": 0.00001111, + "output_cost_per_second": 0, + "litellm_provider": "groq" + }, + "groq/distil-whisper-large-v3-en": { + "mode": "audio_transcription", + "input_cost_per_second": 0.00000556, + "output_cost_per_second": 0, + "litellm_provider": "groq" + }, "cerebras/llama3.1-8b": { "max_tokens": 128000, "max_input_tokens": 128000, diff --git a/pyproject.toml b/pyproject.toml index ac14a9af51..8cb15bb14e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "litellm" -version = "1.65.3" +version = "1.65.4" description = "Library to easily interface with LLM API providers" authors = ["BerriAI"] license = "MIT" @@ -117,7 +117,7 @@ requires = ["poetry-core", "wheel"] build-backend = "poetry.core.masonry.api" [tool.commitizen] -version = "1.65.3" +version = "1.65.4" version_files = [ "pyproject.toml:^version" ]