@melaya/runner 1.0.89 → 1.0.90

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.
@@ -248,7 +248,11 @@ def _build_agent():
248
248
  api_key="", # model.py resolves the provider's own creds (OAuth off disk / localhost)
249
249
  # Phone tasks are many-step (each comment ≈ screen_tree→tap→type→post), so
250
250
  # give them room like the device template (40); read-only Q&A needs few.
251
- max_iters=40 if phone_enabled else 8,
251
+ # Connector WRITE tasks are equally many-step (e.g. "message all my recent
252
+ # LinkedIn connections" = 1 list + N sends, each its own reasoning+HITL
253
+ # round), so they need the same headroom — 8 hit the cap mid-task and
254
+ # forced _summarizing() on a half-finished tool batch.
255
+ max_iters=40 if (phone_enabled or connector_services) else 8,
252
256
  reliability=True,
253
257
  bounded_memory=True,
254
258
  )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@melaya/runner",
3
- "version": "1.0.89",
3
+ "version": "1.0.90",
4
4
  "description": "Run Melaya AI pipelines locally with your own LM Studio or Ollama models",
5
5
  "license": "UNLICENSED",
6
6
  "private": false,