@burtson-labs/bandit-engine 2.0.66 → 2.0.67
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/{chat-IWRBVOVP.mjs → chat-5XCDDPTK.mjs} +2 -2
- package/dist/{chunk-ZYQJVZK2.mjs → chunk-5UD7EJ23.mjs} +7 -3
- package/dist/chunk-5UD7EJ23.mjs.map +1 -0
- package/dist/{chunk-EM2DB6NP.mjs → chunk-RI4LBQ3Q.mjs} +2 -2
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/management/management.js +6 -2
- package/dist/management/management.js.map +1 -1
- package/dist/management/management.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-ZYQJVZK2.mjs.map +0 -1
- /package/dist/{chat-IWRBVOVP.mjs.map → chat-5XCDDPTK.mjs.map} +0 -0
- /package/dist/{chunk-EM2DB6NP.mjs.map → chunk-RI4LBQ3Q.mjs.map} +0 -0
|
@@ -9503,7 +9503,7 @@ var MCPToolsTabV2_default = MCPToolsTabV2;
|
|
|
9503
9503
|
|
|
9504
9504
|
// src/management/management.tsx
|
|
9505
9505
|
import { jsx as jsx13, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
9506
|
-
var preloadChatPage = () => import("./chat-
|
|
9506
|
+
var preloadChatPage = () => import("./chat-5XCDDPTK.mjs");
|
|
9507
9507
|
var buildCapabilitiesUrl = (gatewayApiUrl) => {
|
|
9508
9508
|
const trimmed = gatewayApiUrl.replace(/\/$/, "");
|
|
9509
9509
|
if (trimmed.endsWith("/api")) {
|
|
@@ -10848,4 +10848,4 @@ export {
|
|
|
10848
10848
|
useGatewayMemory,
|
|
10849
10849
|
management_default
|
|
10850
10850
|
};
|
|
10851
|
-
//# sourceMappingURL=chunk-
|
|
10851
|
+
//# sourceMappingURL=chunk-RI4LBQ3Q.mjs.map
|
package/dist/index.js
CHANGED
|
@@ -21076,7 +21076,7 @@ ${r.output}`).join("\n\n");
|
|
|
21076
21076
|
|
|
21077
21077
|
${toolResultsText}
|
|
21078
21078
|
|
|
21079
|
-
Using these results together with your own knowledge, answer my original question concisely and in a natural, well-formatted way.
|
|
21079
|
+
Using these results together with your own knowledge, answer my original question concisely and in a natural, well-formatted way. Do NOT add a "Sources", "References", or "Citations" list of any kind \u2014 not names and not URLs. A clean, clickable Sources section is appended automatically below your answer, so any list you add just duplicates it. (Mentioning a source naturally inside a sentence is fine; a trailing list is not.) Do NOT output tool_code or call any tools again.`
|
|
21080
21080
|
}
|
|
21081
21081
|
];
|
|
21082
21082
|
const summaryRequest = {
|
|
@@ -21131,6 +21131,10 @@ _Writing the answer\u2026_` : "_Writing the answer\u2026_"
|
|
|
21131
21131
|
}, 3e4);
|
|
21132
21132
|
});
|
|
21133
21133
|
if (summaryText.trim()) {
|
|
21134
|
+
const cleanedSummary = summaryText.replace(
|
|
21135
|
+
/\n{1,}\s*(?:[*_#>\s]*)(?:sources?|references?|citations?|further reading)(?:\s*:)?\s*(?:[*_]*)\s*\n[\s\S]*$/i,
|
|
21136
|
+
""
|
|
21137
|
+
).trimEnd();
|
|
21134
21138
|
const sourcesMd = collectedSources.length ? `
|
|
21135
21139
|
|
|
21136
21140
|
**Sources**
|
|
@@ -21142,7 +21146,7 @@ ${collectedSources.slice(0, 6).map((s) => {
|
|
|
21142
21146
|
}
|
|
21143
21147
|
return `- [${s.title || domain}](${s.url}) \u2014 ${domain}`;
|
|
21144
21148
|
}).join("\n")}` : "";
|
|
21145
|
-
enhancedMessage =
|
|
21149
|
+
enhancedMessage = cleanedSummary + sourcesMd + (inlineImageBlocks.length ? `
|
|
21146
21150
|
|
|
21147
21151
|
${inlineImageBlocks.join("\n\n")}` : "");
|
|
21148
21152
|
}
|