@nomad-e/bluma-cli 0.0.95 → 0.0.96
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/main.js +1 -3
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -2084,7 +2084,7 @@ var BluMaAgent = class {
|
|
|
2084
2084
|
eventBus;
|
|
2085
2085
|
mcpClient;
|
|
2086
2086
|
feedbackSystem;
|
|
2087
|
-
maxContextTurns =
|
|
2087
|
+
maxContextTurns = 10;
|
|
2088
2088
|
// Limite de turns no contexto da API
|
|
2089
2089
|
todoListState = [];
|
|
2090
2090
|
isInterrupted = false;
|
|
@@ -2219,9 +2219,7 @@ ${editData.error.display}`;
|
|
|
2219
2219
|
temperature: 0,
|
|
2220
2220
|
tools: this.mcpClient.getAvailableTools(),
|
|
2221
2221
|
tool_choice: "required",
|
|
2222
|
-
// reasoning: { effort: "high" },
|
|
2223
2222
|
parallel_tool_calls: false
|
|
2224
|
-
// max_tokens: 512, // Limite de tokens para evitar respostas muito longas
|
|
2225
2223
|
});
|
|
2226
2224
|
if (this.isInterrupted) {
|
|
2227
2225
|
this.eventBus.emit("backend_message", { type: "info", message: "Agent task cancelled by user." });
|