From f421fdd6b0a6958ba805fdfc4b3424593f6c5751 Mon Sep 17 00:00:00 2001 From: Emmanuel Acheampong Date: Mon, 23 Mar 2026 13:43:25 -0700 Subject: [PATCH] fix(crusoe): fix streaming doc model typo and add supports_vision for Gemma 3 - Streaming example referenced Llama-3.1 instead of Llama-3.3 - Add supports_vision: true for gemma-3-12b-it in both JSON files, matching other providers (bedrock, novita) --- docs/my-website/docs/providers/crusoe.md | 2 +- litellm/model_prices_and_context_window_backup.json | 3 ++- model_prices_and_context_window.json | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/my-website/docs/providers/crusoe.md b/docs/my-website/docs/providers/crusoe.md index b28903c27c0..aa737cbdcd8 100644 --- a/docs/my-website/docs/providers/crusoe.md +++ b/docs/my-website/docs/providers/crusoe.md @@ -71,7 +71,7 @@ messages = [{"content": "Write a short story about AI", "role": "user"}] # Crusoe call with streaming response = completion( - model="crusoe/meta-llama/Llama-3.1-70B-Instruct", + model="crusoe/meta-llama/Llama-3.3-70B-Instruct", messages=messages, stream=True ) diff --git a/litellm/model_prices_and_context_window_backup.json b/litellm/model_prices_and_context_window_backup.json index db7265dd3fe..77b1e0aab64 100644 --- a/litellm/model_prices_and_context_window_backup.json +++ b/litellm/model_prices_and_context_window_backup.json @@ -20481,7 +20481,8 @@ "supports_function_calling": true, "supports_parallel_function_calling": true, "supports_system_messages": true, - "supports_tool_choice": true + "supports_tool_choice": true, + "supports_vision": true }, "crusoe/meta-llama/Llama-3.3-70B-Instruct": { "input_cost_per_token": 2e-07, diff --git a/model_prices_and_context_window.json b/model_prices_and_context_window.json index a852d3bef01..214db4733d9 100644 --- a/model_prices_and_context_window.json +++ b/model_prices_and_context_window.json @@ -20481,7 +20481,8 @@ "supports_function_calling": true, "supports_parallel_function_calling": true, "supports_system_messages": true, - "supports_tool_choice": true + "supports_tool_choice": true, + "supports_vision": true }, "crusoe/meta-llama/Llama-3.3-70B-Instruct": { "input_cost_per_token": 2e-07,