@nomad-e/bluma-cli 0.0.54 → 0.0.55
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
|
@@ -2066,12 +2066,12 @@ ${editData.error.display}`;
|
|
|
2066
2066
|
const response = await this.llm.chatCompletion({
|
|
2067
2067
|
model: this.deploymentName,
|
|
2068
2068
|
messages: contextWindow,
|
|
2069
|
-
temperature: 0,
|
|
2069
|
+
temperature: 0.2,
|
|
2070
2070
|
tools: this.mcpClient.getAvailableTools(),
|
|
2071
2071
|
tool_choice: "required",
|
|
2072
2072
|
reasoning_effort: "high",
|
|
2073
2073
|
parallel_tool_calls: false,
|
|
2074
|
-
max_tokens:
|
|
2074
|
+
max_tokens: 512
|
|
2075
2075
|
// Limite de tokens para evitar respostas muito longas
|
|
2076
2076
|
});
|
|
2077
2077
|
if (this.isInterrupted) {
|