Describe the bug
In the official Chinese documentation page for model configuration, the code example comment for .enableThinking(true) incorrectly says "自动启用流式输出" (auto-enable streaming output), which is misleading. enableThinking() controls the model's reasoning/thinking mode, not streaming output.
To Reproduce
- Go to https://java.agentscope.io/zh/task/model.html
- Scroll down to the "思考模式示例" (Thinking Mode Example) section
- See the incorrect comment on
enableThinking(true)
// Current (incorrect)
.enableThinking(true) // 自动启用流式输出
Expected behavior
The comment should accurately describe what enableThinking() does:
// Suggested fix
.enableThinking(true) // 启用深度思考模式(qwen3 会展示推理过程)
Environment
- AgentScope-Java Version: 1.0.12
- Java Version: 21
- OS: Windows 11
Additional context
Also, streaming output is controlled by the separate .stream(true) method, which defaults to true. These are two distinct features that should not be conflated in the documentation.
Describe the bug
In the official Chinese documentation page for model configuration, the code example comment for
.enableThinking(true)incorrectly says "自动启用流式输出" (auto-enable streaming output), which is misleading.enableThinking()controls the model's reasoning/thinking mode, not streaming output.To Reproduce
enableThinking(true)Expected behavior
The comment should accurately describe what
enableThinking()does:Environment
Additional context
Also, streaming output is controlled by the separate
.stream(true)method, which defaults totrue. These are two distinct features that should not be conflated in the documentation.