@nomad-e/bluma-cli 0.0.65 → 0.0.66
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 +2 -2
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -2149,10 +2149,10 @@ ${editData.error.display}`;
|
|
|
2149
2149
|
const response = await this.llm.chatCompletion({
|
|
2150
2150
|
model: this.deploymentName,
|
|
2151
2151
|
messages: contextWindow,
|
|
2152
|
-
temperature: 0
|
|
2152
|
+
temperature: 0,
|
|
2153
2153
|
tools: this.mcpClient.getAvailableTools(),
|
|
2154
2154
|
tool_choice: "required",
|
|
2155
|
-
|
|
2155
|
+
reasoning: { effort: "high" },
|
|
2156
2156
|
parallel_tool_calls: false
|
|
2157
2157
|
// max_tokens: 512, // Limite de tokens para evitar respostas muito longas
|
|
2158
2158
|
});
|