nothumanallowed 13.5.26 → 13.5.27
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/commands/ui.mjs +9 -4
- package/src/constants.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.27",
|
|
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/commands/ui.mjs
CHANGED
|
@@ -3910,7 +3910,7 @@ DELIBERATION ROUND 2 — REFINEMENT:
|
|
|
3910
3910
|
let r2Out = '';
|
|
3911
3911
|
let r2TokCount = 0;
|
|
3912
3912
|
try {
|
|
3913
|
-
await callLLMStream(config, r2Sys, 'Produce your refined Round 2 response.',
|
|
3913
|
+
await callLLMStream(config, r2Sys, 'Produce your refined Round 2 response. Write complete content under every heading — never leave a section title without body text.',
|
|
3914
3914
|
(tok) => {
|
|
3915
3915
|
r2Out += tok;
|
|
3916
3916
|
r2TokCount += Math.ceil(tok.length / 4);
|
|
@@ -3918,7 +3918,7 @@ DELIBERATION ROUND 2 — REFINEMENT:
|
|
|
3918
3918
|
if (r2TokCount % 20 < 3) {
|
|
3919
3919
|
sendTok2(`[Round 2 ${proposal.label || proposal.agent}: ${r2TokCount} token] `);
|
|
3920
3920
|
}
|
|
3921
|
-
}, { max_tokens:
|
|
3921
|
+
}, { max_tokens: 8192 });
|
|
3922
3922
|
} catch (e) { r2Out = proposal.output; }
|
|
3923
3923
|
r2Results.push({ agent: proposal.agent, label: proposal.label, icon: proposal.icon, output: r2Out });
|
|
3924
3924
|
sendEv2({ deliberation_r2: { agent: proposal.agent, label: proposal.label, icon: proposal.icon, output: r2Out } });
|
|
@@ -3976,10 +3976,15 @@ ${allR2Ctx}${contradictionBlock}
|
|
|
3976
3976
|
|
|
3977
3977
|
${medTask}
|
|
3978
3978
|
|
|
3979
|
-
CRITICAL
|
|
3979
|
+
CRITICAL WRITING RULES — ENFORCE STRICTLY:
|
|
3980
|
+
- NEVER write a heading or numbered title without immediately writing its full content below it. A heading with no body text beneath it is FORBIDDEN.
|
|
3981
|
+
- Every section (e.g. "3.1. Sito Web") MUST be followed by at least 3-5 concrete bullet points or sentences explaining WHAT to do and HOW. Never just list the title and move on.
|
|
3982
|
+
- Every agent's contribution must be traceable. If an agent raised a point not incorporated, explicitly state why.
|
|
3983
|
+
- Do NOT summarize sections at the end without first writing their full content.
|
|
3984
|
+
- Write the complete content of each section before moving to the next.`;
|
|
3980
3985
|
try {
|
|
3981
3986
|
await callLLMStream(config, medSys, 'Produce the Parliament final synthesis.',
|
|
3982
|
-
(tok) => { mediationOutput += tok; }, { max_tokens:
|
|
3987
|
+
(tok) => { mediationOutput += tok; }, { max_tokens: 8192 });
|
|
3983
3988
|
} catch (e) { mediationOutput = ''; }
|
|
3984
3989
|
sendEv2({ deliberation_r3: { output: mediationOutput, converged } });
|
|
3985
3990
|
}
|
package/src/constants.mjs
CHANGED
|
@@ -5,7 +5,7 @@ import { fileURLToPath } from 'url';
|
|
|
5
5
|
const __filename = fileURLToPath(import.meta.url);
|
|
6
6
|
const __dirname = path.dirname(__filename);
|
|
7
7
|
|
|
8
|
-
export const VERSION = '13.5.
|
|
8
|
+
export const VERSION = '13.5.27';
|
|
9
9
|
export const BASE_URL = 'https://nothumanallowed.com/cli';
|
|
10
10
|
export const API_BASE = 'https://nothumanallowed.com/api/v1';
|
|
11
11
|
|
package/src/services/web-ui.mjs
CHANGED
|
@@ -3325,7 +3325,7 @@ var studioAbortController = null;
|
|
|
3325
3325
|
var parlActiveAgent = null; // active agent label during parliament streaming
|
|
3326
3326
|
var parlDoneAgents = {}; // set of completed agent labels during parliament
|
|
3327
3327
|
var _parlPersistHtml = null; // persists parliament block HTML across tab navigations
|
|
3328
|
-
var _PARL_STAMP = '<!--nha-parl-v13.5.
|
|
3328
|
+
var _PARL_STAMP = '<!--nha-parl-v13.5.27-->';
|
|
3329
3329
|
|
|
3330
3330
|
function stopStudio() {
|
|
3331
3331
|
if (!studioState.running) return;
|