mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-09 22:31:41 +00:00
fix(types/utils.py): add order param to litellm_params
Fixes https://github.com/BerriAI/litellm/issues/18259
This commit is contained in:
parent
a3b6c6c0a7
commit
0ff13453ea
2 changed files with 22 additions and 21 deletions
|
|
@ -24594,27 +24594,6 @@
|
|||
"mode": "image_generation",
|
||||
"output_cost_per_image": 0.04
|
||||
},
|
||||
"stability.stable-image-core-v1:1": {
|
||||
"litellm_provider": "bedrock",
|
||||
"max_input_tokens": 77,
|
||||
"max_tokens": 77,
|
||||
"mode": "image_generation",
|
||||
"output_cost_per_image": 0.04
|
||||
},
|
||||
"stability.stable-image-ultra-v1:0": {
|
||||
"litellm_provider": "bedrock",
|
||||
"max_input_tokens": 77,
|
||||
"max_tokens": 77,
|
||||
"mode": "image_generation",
|
||||
"output_cost_per_image": 0.14
|
||||
},
|
||||
"stability.stable-image-ultra-v1:1": {
|
||||
"litellm_provider": "bedrock",
|
||||
"max_input_tokens": 77,
|
||||
"max_tokens": 77,
|
||||
"mode": "image_generation",
|
||||
"output_cost_per_image": 0.14
|
||||
},
|
||||
"stability.stable-conservative-upscale-v1:0": {
|
||||
"litellm_provider": "bedrock",
|
||||
"max_input_tokens": 77,
|
||||
|
|
@ -24693,6 +24672,27 @@
|
|||
"mode": "image_edit",
|
||||
"output_cost_per_image": 0.08
|
||||
},
|
||||
"stability.stable-image-core-v1:1": {
|
||||
"litellm_provider": "bedrock",
|
||||
"max_input_tokens": 77,
|
||||
"max_tokens": 77,
|
||||
"mode": "image_generation",
|
||||
"output_cost_per_image": 0.04
|
||||
},
|
||||
"stability.stable-image-ultra-v1:0": {
|
||||
"litellm_provider": "bedrock",
|
||||
"max_input_tokens": 77,
|
||||
"max_tokens": 77,
|
||||
"mode": "image_generation",
|
||||
"output_cost_per_image": 0.14
|
||||
},
|
||||
"stability.stable-image-ultra-v1:1": {
|
||||
"litellm_provider": "bedrock",
|
||||
"max_input_tokens": 77,
|
||||
"max_tokens": 77,
|
||||
"mode": "image_generation",
|
||||
"output_cost_per_image": 0.14
|
||||
},
|
||||
"standard/1024-x-1024/dall-e-3": {
|
||||
"input_cost_per_pixel": 3.81469e-08,
|
||||
"litellm_provider": "openai",
|
||||
|
|
|
|||
|
|
@ -2852,6 +2852,7 @@ all_litellm_params = (
|
|||
"prompt_label",
|
||||
"shared_session",
|
||||
"search_tool_name",
|
||||
"order",
|
||||
]
|
||||
+ list(StandardCallbackDynamicParams.__annotations__.keys())
|
||||
+ list(CustomPricingLiteLLMParams.model_fields.keys())
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue