@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.
- package/dist/assistantHost.py +5 -1
- package/package.json +1 -1
package/dist/assistantHost.py
CHANGED
|
@@ -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
|
-
|
|
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
|
)
|