fix: hiding the thought process

This commit is contained in:
zhayujie
2026-02-04 19:36:01 +08:00
parent c72cda3386
commit 72b1cacea1
2 changed files with 2 additions and 2 deletions

View File

@@ -236,7 +236,7 @@ class MinimaxBot(Bot):
logger.debug(f"[MINIMAX] API call: model={model}, tools={len(converted_tools) if converted_tools else 0}, stream={stream}")
# Check if we should show thinking process
show_thinking = kwargs.pop("show_thinking", conf().get("minimax_show_thinking", True))
show_thinking = kwargs.pop("show_thinking", conf().get("minimax_show_thinking", False))
if stream:
return self._handle_stream_response(request_body, show_thinking=show_thinking)