@mindstudio-ai/remy 0.1.272 → 0.1.274

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/headless.js CHANGED
@@ -282,7 +282,11 @@ async function* streamChat(params) {
282
282
  var MAX_RETRIES = 5;
283
283
  var INITIAL_BACKOFF_MS = 1e3;
284
284
  function isRetryableError(error) {
285
- return /Network error/i.test(error) || /HTTP 5\d\d/i.test(error) || /Stream stalled/i.test(error) || /overloaded/i.test(error) || /terminated/i.test(error);
285
+ return /Network error/i.test(error) || /HTTP 5\d\d/i.test(error) || /Stream stalled/i.test(error) || /overloaded/i.test(error) || /terminated/i.test(error) || // Anthropic fetches url-source image blocks server-side on every call;
286
+ // a transient failure anywhere in that chain (S3 signing edge, resize
287
+ // proxy, their fetcher) surfaces as this message. The images themselves
288
+ // are fine — the same URLs typically succeed on the next attempt.
289
+ /Unable to download/i.test(error);
286
290
  }
287
291
  function sleep(ms) {
288
292
  return new Promise((resolve3) => setTimeout(resolve3, ms));
@@ -493,6 +497,7 @@ var ALLOWED_MODELS_BY_TYPE = {
493
497
  "kimi-k3",
494
498
  "deepseek-v4-flash-0731",
495
499
  "qwen3.8-2.4t-a95b-deepinfra",
500
+ "qwen3.8-27b-deepinfra",
496
501
  "minimax-m3"
497
502
  ]
498
503
  // vision: undefined — unconstrained
package/dist/index.js CHANGED
@@ -263,7 +263,11 @@ async function* streamChat(params) {
263
263
  }
264
264
  }
265
265
  function isRetryableError(error) {
266
- return /Network error/i.test(error) || /HTTP 5\d\d/i.test(error) || /Stream stalled/i.test(error) || /overloaded/i.test(error) || /terminated/i.test(error);
266
+ return /Network error/i.test(error) || /HTTP 5\d\d/i.test(error) || /Stream stalled/i.test(error) || /overloaded/i.test(error) || /terminated/i.test(error) || // Anthropic fetches url-source image blocks server-side on every call;
267
+ // a transient failure anywhere in that chain (S3 signing edge, resize
268
+ // proxy, their fetcher) surfaces as this message. The images themselves
269
+ // are fine — the same URLs typically succeed on the next attempt.
270
+ /Unable to download/i.test(error);
267
271
  }
268
272
  function sleep(ms) {
269
273
  return new Promise((resolve3) => setTimeout(resolve3, ms));
@@ -2233,6 +2237,7 @@ var init_surfaces = __esm({
2233
2237
  "kimi-k3",
2234
2238
  "deepseek-v4-flash-0731",
2235
2239
  "qwen3.8-2.4t-a95b-deepinfra",
2240
+ "qwen3.8-27b-deepinfra",
2236
2241
  "minimax-m3"
2237
2242
  ]
2238
2243
  // vision: undefined — unconstrained
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindstudio-ai/remy",
3
- "version": "0.1.272",
3
+ "version": "0.1.274",
4
4
  "description": "Remy coding agent",
5
5
  "repository": {
6
6
  "type": "git",