deeper-cli 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deeper-cli",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "DeeperCode - 一句话生成完整项目的 AI Agentic CLI 工具",
5
5
  "type": "module",
6
6
  "bin": {
@@ -199,6 +199,8 @@ export class DeepSeekClient {
199
199
  if (m.name) {
200
200
  msg.name = m.name;
201
201
  }
202
+ const rc = (m as unknown as Record<string, unknown>).reasoning_content || m.thinking;
203
+ if (rc) msg.reasoning_content = rc;
202
204
  return msg;
203
205
  }),
204
206
  temperature: config.temperature,