reasonix 0.5.21 → 0.5.22

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/dist/cli/index.js CHANGED
@@ -196,7 +196,7 @@ var DeepSeekClient = class {
196
196
  }
197
197
  this.apiKey = apiKey;
198
198
  this.baseUrl = (opts.baseUrl ?? process.env.DEEPSEEK_BASE_URL ?? "https://api.deepseek.com").replace(/\/+$/, "");
199
- this.timeoutMs = opts.timeoutMs ?? 12e4;
199
+ this.timeoutMs = opts.timeoutMs ?? 66e4;
200
200
  this._fetch = opts.fetch ?? globalThis.fetch.bind(globalThis);
201
201
  this.retry = opts.retry ?? {};
202
202
  }