mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-12-24 13:28:13 +08:00
[BugFix] fix offline llm chat "enable_thinking" is always "False" (#4686)
* fix enable_thinking * recover ernie4_5_vl_processor
This commit is contained in:
@@ -197,7 +197,7 @@ class Request:
|
||||
guided_grammar=d.get("guided_grammar", None),
|
||||
structural_tag=d.get("structural_tag", None),
|
||||
guided_json_object=d.get("guided_json_object", None),
|
||||
enable_thinking=d.get("enable_thinking", False),
|
||||
enable_thinking=d.get("enable_thinking", None),
|
||||
reasoning_max_tokens=d.get("reasoning_max_tokens", None),
|
||||
trace_carrier=d.get("trace_carrier", {}),
|
||||
chat_template=d.get("chat_template", None),
|
||||
|
||||
Reference in New Issue
Block a user