@nomad-e/bluma-cli 0.0.80 → 0.0.82
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/config/native_tools.json +12 -12
- package/dist/main.js +2 -1
- package/package.json +1 -1
|
@@ -68,18 +68,6 @@
|
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
|
-
{
|
|
72
|
-
"type": "function",
|
|
73
|
-
"function": {
|
|
74
|
-
"name": "agent_end_turn",
|
|
75
|
-
"description": "End the current agent turn. This tool is a especial tool that is used to signal the end of the agent's turn. It does not require any parameters and does not return any value.",
|
|
76
|
-
"parameters": {
|
|
77
|
-
"type": "object",
|
|
78
|
-
"properties": {},
|
|
79
|
-
"required": []
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
},
|
|
83
71
|
{
|
|
84
72
|
"type": "function",
|
|
85
73
|
"function": {
|
|
@@ -201,6 +189,18 @@
|
|
|
201
189
|
]
|
|
202
190
|
}
|
|
203
191
|
}
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"type": "function",
|
|
195
|
+
"function": {
|
|
196
|
+
"name": "agent_end_turn",
|
|
197
|
+
"description": "This tool MUST be used to signal the system that the agent has ended its turn and should switch to idle mode. It takes no parameters.",
|
|
198
|
+
"parameters": {
|
|
199
|
+
"type": "object",
|
|
200
|
+
"properties": {},
|
|
201
|
+
"required": []
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
204
|
}
|
|
205
205
|
]
|
|
206
206
|
}
|
package/dist/main.js
CHANGED
|
@@ -1814,6 +1814,7 @@ Ensure that each task contributes to a cohesive, functional, and visually appeal
|
|
|
1814
1814
|
</agent_end_turn_rules>
|
|
1815
1815
|
|
|
1816
1816
|
|
|
1817
|
+
|
|
1817
1818
|
---
|
|
1818
1819
|
|
|
1819
1820
|
<scope_and_limitations>
|
|
@@ -1996,7 +1997,7 @@ var BluMaAgent = class {
|
|
|
1996
1997
|
eventBus;
|
|
1997
1998
|
mcpClient;
|
|
1998
1999
|
feedbackSystem;
|
|
1999
|
-
maxContextTurns =
|
|
2000
|
+
maxContextTurns = 20;
|
|
2000
2001
|
// Limite de turns no contexto da API
|
|
2001
2002
|
todoListState = [];
|
|
2002
2003
|
isInterrupted = false;
|