nothumanallowed 13.5.82 → 13.5.83
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/package.json +1 -1
- package/src/services/llm.mjs +1 -1
- package/src/services/web-ui.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nothumanallowed",
|
|
3
|
-
"version": "13.5.
|
|
3
|
+
"version": "13.5.83",
|
|
4
4
|
"description": "NotHumanAllowed — 38 AI agents, 80 tools, Studio (visual agentic workflows). Email, calendar, browser automation, screen capture, canvas, cron/heartbeat, Alexandria E2E messaging, GitHub, Notion, Slack, voice chat, free AI (Liara), 28 languages. Zero-dependency CLI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
package/src/services/llm.mjs
CHANGED
|
@@ -266,7 +266,7 @@ export async function callNHA(apiKey, model, systemPrompt, userMessage, stream =
|
|
|
266
266
|
|
|
267
267
|
const body = {
|
|
268
268
|
model: model || '/opt/models/qwen3-32b',
|
|
269
|
-
max_tokens: thinkingEnabled ?
|
|
269
|
+
max_tokens: thinkingEnabled ? 16384 : 8192,
|
|
270
270
|
messages: [
|
|
271
271
|
{ role: 'system', content: sanitizeForSentinel(systemPrompt) },
|
|
272
272
|
{ role: 'user', content: sanitizeForSentinel(userMessage) },
|
package/src/services/web-ui.mjs
CHANGED
|
@@ -8084,7 +8084,7 @@ async function wcCallLLMRaw(sys, user, signal) {
|
|
|
8084
8084
|
var fetchOpts = {
|
|
8085
8085
|
method: 'POST',
|
|
8086
8086
|
headers: {'Content-Type':'application/json'},
|
|
8087
|
-
body: JSON.stringify({system: sys, user: user, max_tokens:
|
|
8087
|
+
body: JSON.stringify({system: sys, user: user, max_tokens: 8192})
|
|
8088
8088
|
};
|
|
8089
8089
|
if (signal) fetchOpts.signal = signal;
|
|
8090
8090
|
for (var attempt = 0; attempt < 3; attempt++) {
|