dual-brain 0.2.1 → 0.2.2
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/dispatch.mjs +2 -2
package/package.json
CHANGED
package/src/dispatch.mjs
CHANGED
|
@@ -709,7 +709,7 @@ async function dispatch(input = {}) {
|
|
|
709
709
|
? input.situationBrief.trim()
|
|
710
710
|
: null;
|
|
711
711
|
if (situationBrief) {
|
|
712
|
-
prompt =
|
|
712
|
+
prompt = `[SITUATION BRIEF]\n${situationBrief}\n[END BRIEF]\n\n${prompt}`;
|
|
713
713
|
}
|
|
714
714
|
// ── End situation brief ──────────────────────────────────────────────────────
|
|
715
715
|
|
|
@@ -1071,7 +1071,7 @@ async function dispatchDualBrain(input = {}) {
|
|
|
1071
1071
|
? input.situationBrief.trim()
|
|
1072
1072
|
: null;
|
|
1073
1073
|
if (_dualBrainBrief) {
|
|
1074
|
-
prompt =
|
|
1074
|
+
prompt = `[SITUATION BRIEF]\n${_dualBrainBrief}\n[END BRIEF]\n\n${prompt}`;
|
|
1075
1075
|
}
|
|
1076
1076
|
// ── End situation brief ──────────────────────────────────────────────────────
|
|
1077
1077
|
|