mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-11 22:51:28 +00:00
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)
This commit is contained in:
parent
added6fab8
commit
f421fdd6b0
3 changed files with 5 additions and 3 deletions
|
|
@ -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
|
||||
)
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue