mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-10 22:41:41 +00:00
fix(friendli): declare GLM-5.3-Flash reasoning efforts as explicit levels
This commit is contained in:
parent
e9f1af8473
commit
a90fb538bf
2 changed files with 6 additions and 4 deletions
|
|
@ -19575,8 +19575,11 @@
|
|||
"output_cost_per_token": 5e-07,
|
||||
"cache_read_input_token_cost": 3e-08,
|
||||
"supports_prompt_caching": true,
|
||||
"supports_max_reasoning_effort": true,
|
||||
"supports_low_reasoning_effort": true,
|
||||
"reasoning_effort_levels": [
|
||||
"low",
|
||||
"high",
|
||||
"max"
|
||||
],
|
||||
"supports_parallel_function_calling": true,
|
||||
"supports_response_schema": true,
|
||||
"supports_native_structured_output": true,
|
||||
|
|
|
|||
|
|
@ -23,8 +23,7 @@ def test_friendli_glm_5_3_flash_model_info():
|
|||
assert info["max_output_tokens"] == 1048576
|
||||
assert info["supports_function_calling"] is True
|
||||
assert info["supports_reasoning"] is True
|
||||
assert info["supports_low_reasoning_effort"] is True
|
||||
assert info["supports_max_reasoning_effort"] is True
|
||||
assert info["reasoning_effort_levels"] == ["low", "high", "max"]
|
||||
assert info["supports_tool_choice"] is True
|
||||
assert info["supports_prompt_caching"] is True
|
||||
assert info["supports_vision"] is True
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue