open-agents-ai 0.187.250 → 0.187.251
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/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -327040,8 +327040,8 @@ function createTaskCompleteTool(modelTier) {
|
|
|
327040
327040
|
if (_interactiveSessionActive) {
|
|
327041
327041
|
return {
|
|
327042
327042
|
success: false,
|
|
327043
|
-
output:
|
|
327044
|
-
error: `task_complete BLOCKED — interactive session still active. ${_interactiveSessionReason} You MUST continue the interaction loop until the session ends. Do NOT call task_complete until you receive a termination signal (e.g. "ended", "disconnected", "closed", SESSION_ACTIVE=false).
|
|
327043
|
+
output: `SESSION STILL ACTIVE. Call your next interaction tool NOW. Do NOT produce text — call a tool immediately to continue the session.`,
|
|
327044
|
+
error: `task_complete BLOCKED — interactive session still active. ${_interactiveSessionReason} You MUST continue the interaction loop until the session ends. Do NOT call task_complete until you receive a termination signal (e.g. "ended", "disconnected", "closed", SESSION_ACTIVE=false). YOUR NEXT ACTION: call the listening/polling tool to continue the session.`
|
|
327045
327045
|
};
|
|
327046
327046
|
}
|
|
327047
327047
|
try {
|
|
@@ -327061,7 +327061,7 @@ function createTaskCompleteTool(modelTier) {
|
|
|
327061
327061
|
error: `task_complete BLOCKED — ${incomplete.length} todo item(s) still incomplete. You must either:
|
|
327062
327062
|
1. Continue working on the remaining items, OR
|
|
327063
327063
|
2. If they're actually done, call todo_write with status='completed' for each one, THEN call task_complete again.
|
|
327064
|
-
3. If you are in an interactive session (call, chat, monitoring), RESUME THE LOOP —
|
|
327064
|
+
3. If you are in an interactive session (call, chat, monitoring), RESUME THE LOOP — call your next interaction tool NOW.
|
|
327065
327065
|
|
|
327066
327066
|
Incomplete items:
|
|
327067
327067
|
${incompleteList}${more}`
|
package/package.json
CHANGED